From 3f898bfc3a67ab0c447d8679c953dbb61c52fe9a Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Thu, 6 Sep 2012 12:33:04 -0400 Subject: [PATCH] Fixed wrong function name --- airtime_mvc/application/controllers/ScheduleController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/controllers/ScheduleController.php b/airtime_mvc/application/controllers/ScheduleController.php index 361798679..eba69211f 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -829,13 +829,13 @@ class ScheduleController extends Zend_Controller_Action $this->view->newForm = $this->view->render( 'schedule/add-show-form.phtml'); Logging::debug("Show creation succeeded"); - Logging::sparse_debug( $data ); + Logging::debug_sparse( $data ); } else { $this->view->addNewShow = true; $this->view->form = $this->view->render(' schedule/add-show-form.phtml'); Logging::debug("Show creation failed"); - Logging::sparse_debug( $data ); + Logging::debug_sparse( $data ); } }