Fix a rendering problem if a zero length show happens

This commit is contained in:
Albert Santoni 2013-12-13 18:27:14 -05:00
parent 346036a9ca
commit 6a468ff549

View file

@ -1011,7 +1011,11 @@ SQL;
$options["show_empty"] = (array_key_exists($show['instance_id'],
$content_count)) ? 0 : 1;
if (array_key_exists($show['instance_id'], $isFull)) {
$options["show_partial_filled"] = !$isFull[$show['instance_id']];
} else {
$options["show_partial_filled"] = true;
}
$event = array();