Massive simplification of the GeneralPreferences dialog

* The purpose of this was so that we can use Zend_Form_Element
  decorators, which I need.
This commit is contained in:
Albert Santoni 2015-01-13 20:51:46 -05:00
parent 9e90e8af63
commit c4d3a8fa62
6 changed files with 99 additions and 185 deletions

View file

@ -1316,16 +1316,16 @@ SQL;
$results['nextShow'][0] = array(
"id" => $rows[$i]['id'],
"instance_id" => $rows[$i]['instance_id'],
"name" => $rows[$i]['name'],
"name" => $rows[$i]['name'],
"description" => $rows[$i]['description'],
"url" => $rows[$i]['url'],
"url" => $rows[$i]['url'],
"start_timestamp" => $rows[$i]['start_timestamp'],
"end_timestamp" => $rows[$i]['end_timestamp'],
"starts" => $rows[$i]['starts'],
"ends" => $rows[$i]['ends'],
"record" => $rows[$i]['record'],
"image_path" => $rows[$i]['image_path'],
"type" => "show");
"type" => "show");
break;
}
}