Fixed wrong function name

This commit is contained in:
Rudi Grinberg 2012-09-06 12:33:04 -04:00
parent 7a3c2db2bf
commit 3f898bfc3a
1 changed files with 2 additions and 2 deletions

View File

@ -829,13 +829,13 @@ class ScheduleController extends Zend_Controller_Action
$this->view->newForm = $this->view->render( $this->view->newForm = $this->view->render(
'schedule/add-show-form.phtml'); 'schedule/add-show-form.phtml');
Logging::debug("Show creation succeeded"); Logging::debug("Show creation succeeded");
Logging::sparse_debug( $data ); Logging::debug_sparse( $data );
} else { } else {
$this->view->addNewShow = true; $this->view->addNewShow = true;
$this->view->form = $this->view->render(' $this->view->form = $this->view->render('
schedule/add-show-form.phtml'); schedule/add-show-form.phtml');
Logging::debug("Show creation failed"); Logging::debug("Show creation failed");
Logging::sparse_debug( $data ); Logging::debug_sparse( $data );
} }
} }