CC-2283: Now playing bar only shows the first word of the show name

-fixed
This commit is contained in:
martin 2011-05-18 18:37:13 -04:00
parent 37bfb53b3a
commit d6616004a6
2 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@ class Application_Model_Nowplaying
{
public static function CreateHeaderRow($p_showName, $p_showStart, $p_showEnd){
return array("h", $p_showName, $p_showStart, $p_showEnd, "", "", "", "", "", "", "");
return array("h", "", $p_showStart, $p_showEnd, $p_showName, "", "", "", "", "", "");
}
public static function CreateDatatableRows($p_dbRows){
@ -30,11 +30,11 @@ class Application_Model_Nowplaying
}
public static function CreateGapRow($p_gapTime){
return array("g", $p_gapTime, "", "", "", "", "", "", "", "", "");
return array("g", "", "", "", $p_gapTime, "", "", "", "", "", "");
}
public static function CreateRecordingRow($p_showInstance){
return array("r", $p_showInstance->getName(), "", "", "", "", "", "", "", "", "");
return array("r", "", "", "", $p_showInstance->getName(), "", "", "", "", "", "");
}
public static function GetDataGridData($viewType, $dateString){