CC-4975: airtime-silan cmd error

-fixed
This commit is contained in:
Martin Konecny 2013-02-25 19:45:26 -05:00
parent e35416b1e8
commit e08732fba7
3 changed files with 12 additions and 5 deletions

View file

@ -45,6 +45,7 @@ class ApiController extends Zend_Controller_Action
->addActionContext('push-stream-stats' , 'json')
->addActionContext('update-stream-setting-table' , 'json')
->addActionContext('update-replay-gain-value' , 'json')
->addActionContext('update-cue-values-by-silan' , 'json')
->initContext();
}
@ -962,13 +963,13 @@ class ApiController extends Zend_Controller_Action
public function updateCueValuesBySilanAction()
{
// disable layout
// disable the view and the layout
$this->view->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);
$request = $this->getRequest();
$data = json_decode($request->getParam('data'));
Logging::info($data);
foreach ($data as $pair) {
list($id, $info) = $pair;
// TODO : move this code into model -- RG
@ -980,6 +981,8 @@ class ApiController extends Zend_Controller_Action
$file->setDbSilanCheck(true);
$file->save();
}
echo json_encode(array());
}
public function notifyWebstreamDataAction()