This commit is contained in:
Naomi Aro 2013-07-22 10:47:11 -04:00
parent 634eb40a0c
commit 19ba788bae
2 changed files with 19 additions and 19 deletions

View file

@ -119,14 +119,14 @@ class PlayouthistoryController extends Zend_Controller_Action
unset($this->view->form);
}
public function createListItemAction()
{
public function createListItemAction()
{
$request = $this->getRequest();
$params = $request->getPost();
Logging::info($params);
$historyService = new Application_Service_HistoryService();
$historyService->createPlayedItem($params);
Logging::info($params);
$historyService = new Application_Service_HistoryService();
$historyService->createPlayedItem($params);
}
public function editListItemAction()