Removed references to image path and instance_description
This commit is contained in:
parent
c24320a094
commit
ed7b85c69b
|
@ -1221,7 +1221,6 @@ SELECT si.starts AS start_timestamp,
|
||||||
si.id AS instance_id,
|
si.id AS instance_id,
|
||||||
si.record,
|
si.record,
|
||||||
s.url,
|
s.url,
|
||||||
s.image_path,
|
|
||||||
starts,
|
starts,
|
||||||
ends
|
ends
|
||||||
FROM cc_show_instances si
|
FROM cc_show_instances si
|
||||||
|
@ -1273,7 +1272,6 @@ SQL;
|
||||||
"starts" => $rows[$i-1]['starts'],
|
"starts" => $rows[$i-1]['starts'],
|
||||||
"ends" => $rows[$i-1]['ends'],
|
"ends" => $rows[$i-1]['ends'],
|
||||||
"record" => $rows[$i-1]['record'],
|
"record" => $rows[$i-1]['record'],
|
||||||
"image_path" => $rows[$i-1]['image_path'],
|
|
||||||
"type" => "show");
|
"type" => "show");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1291,7 +1289,6 @@ SQL;
|
||||||
"starts" => $rows[$i+1]['starts'],
|
"starts" => $rows[$i+1]['starts'],
|
||||||
"ends" => $rows[$i+1]['ends'],
|
"ends" => $rows[$i+1]['ends'],
|
||||||
"record" => $rows[$i+1]['record'],
|
"record" => $rows[$i+1]['record'],
|
||||||
"image_path" => $rows[$i+1]['image_path'],
|
|
||||||
"type" => "show");
|
"type" => "show");
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1313,7 +1310,6 @@ SQL;
|
||||||
"starts" => $rows[$i]['starts'],
|
"starts" => $rows[$i]['starts'],
|
||||||
"ends" => $rows[$i]['ends'],
|
"ends" => $rows[$i]['ends'],
|
||||||
"record" => $rows[$i]['record'],
|
"record" => $rows[$i]['record'],
|
||||||
"image_path" => $rows[$i]['image_path'],
|
|
||||||
"type" => "show");
|
"type" => "show");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1331,7 +1327,6 @@ SQL;
|
||||||
"starts" => $rows[$previousShowIndex]['starts'],
|
"starts" => $rows[$previousShowIndex]['starts'],
|
||||||
"ends" => $rows[$previousShowIndex]['ends'],
|
"ends" => $rows[$previousShowIndex]['ends'],
|
||||||
"record" => $rows[$previousShowIndex]['record'],
|
"record" => $rows[$previousShowIndex]['record'],
|
||||||
"image_path" => $rows[$previousShowIndex]['image_path'],
|
|
||||||
"type" => "show");
|
"type" => "show");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue