From 651951292482c5dd4b77ad49fec7b74ccc49cf25 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Wed, 12 Sep 2012 11:54:37 -0400 Subject: [PATCH] fixed array_map over iterable --- airtime_mvc/application/models/Show.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/airtime_mvc/application/models/Show.php b/airtime_mvc/application/models/Show.php index 8214f4c03..96b208231 100644 --- a/airtime_mvc/application/models/Show.php +++ b/airtime_mvc/application/models/Show.php @@ -136,10 +136,10 @@ class Application_Model_Show $hosts = Application_Common_Database::prepareAndExecute( $sql, array( ':show_id' => $this->getId() ), 'all'); - $res = array_map( function($host) { - return $host['first_name']." ".$host['last_name']; - }, $hosts); - + $res = array(); + foreach ($hosts as $host) { + $res[] = $host['first_name']." ".$host['last_name']; + } return $res; }