summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorBjörn Geiger2011-09-22 16:02:31 +0200
committerBjörn Geiger2011-09-22 16:02:31 +0200
commit53e3216f321d8e3382baad0de0d0b9d760f07228 (patch)
tree54d96792ff167530125549b486382d71602c1ffe /application
parentminor (diff)
downloadpoolctrl-53e3216f321d8e3382baad0de0d0b9d760f07228.tar.gz
poolctrl-53e3216f321d8e3382baad0de0d0b9d760f07228.tar.xz
poolctrl-53e3216f321d8e3382baad0de0d0b9d760f07228.zip
kleine änderung
Diffstat (limited to 'application')
-rwxr-xr-xapplication/controllers/EventController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/controllers/EventController.php b/application/controllers/EventController.php
index 454e1fd..5f58606 100755
--- a/application/controllers/EventController.php
+++ b/application/controllers/EventController.php
@@ -646,7 +646,7 @@ class EventController extends Zend_Controller_Action
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender();
$eventTitle = $this->_request->getParam("title");
- $events = $this->eventMapper->findBy(array('title' => $eventTitle, 'repeat' => 1));
+ $events = $this->eventMapper->findBy(array('title' => $eventTitle, 'repeat' => '1'));
echo json_encode($events);
}