CC-4554: Playout History search sticks on 'Processing' message

-fixed
This commit is contained in:
denise 2012-10-16 12:04:52 -04:00
parent 9d3271c03d
commit b061573d23
1 changed files with 6 additions and 6 deletions

View File

@ -16,12 +16,12 @@ class Application_Model_PlayoutHistory
private $opts;
private $mDataPropMap = array(
"artist" => "file.artist_name",
"title" => "file.track_title",
"played" => "playout.played",
"length" => "file.length",
"composer" => "file.composer",
"copyright" => "file.copyright",
"artist" => "artist_name",
"title" => "track_title",
"played" => "played",
"length" => "length",
"composer" => "composer",
"copyright" => "copyright",
);
public function __construct($p_startDT, $p_endDT, $p_opts)