CC-2095: Changes to the stream metadata are not pushed to pypo

Fixed.
This commit is contained in:
paul.baranowski 2011-03-23 18:16:08 -04:00
parent c15c92d855
commit d943548f27

View file

@ -63,6 +63,7 @@ class Application_Model_Preference
Application_Model_Preference::SetValue("station_name", $title);
$defaultNamespace = new Zend_Session_Namespace('title_name');
$defaultNamespace->title = $title;
RabbitMq::PushSchedule();
//set session variable to new station name so that html title is updated.
//should probably do this in a view helper to keep this controller as minimal as possible.
@ -88,6 +89,7 @@ class Application_Model_Preference
public static function SetStreamLabelFormat($type){
Application_Model_Preference::SetValue("stream_label_format", $type);
RabbitMq::PushSchedule();
}
public static function GetStreamLabelFormat(){