summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Geiger2011-09-27 18:01:45 +0200
committerBjörn Geiger2011-09-27 18:01:45 +0200
commit8b4a66a88e4e9e296c28a0ad58a65a9ff0bc3fc3 (patch)
tree3e749eb75250bc71ce0a3908b5447eddcc636002
parentminor (diff)
downloadpoolctrl-8b4a66a88e4e9e296c28a0ad58a65a9ff0bc3fc3.tar.gz
poolctrl-8b4a66a88e4e9e296c28a0ad58a65a9ff0bc3fc3.tar.xz
poolctrl-8b4a66a88e4e9e296c28a0ad58a65a9ff0bc3fc3.zip
kleine Korrektur
-rwxr-xr-xapplication/controllers/EventController.php2
-rwxr-xr-xapplication/models/Event.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/application/controllers/EventController.php b/application/controllers/EventController.php
index fbf48f1..5316c53 100755
--- a/application/controllers/EventController.php
+++ b/application/controllers/EventController.php
@@ -247,7 +247,7 @@ class EventController extends Zend_Controller_Action
$this->runEvent($event, $this->userIDsNamespace['apikey']);
}
if($event->repeat) {
- repeatEvent($event);
+ $this->repeatEvent($event);
}
$this->_redirect('/event/');
}
diff --git a/application/models/Event.php b/application/models/Event.php
index 0b472ea..143e6c0 100755
--- a/application/models/Event.php
+++ b/application/models/Event.php
@@ -235,7 +235,7 @@ class Application_Model_Event
public function setRepeattype($_repeattype)
{
- $this->_repeattype = $__repeattype;
+ $this->_repeattype = $_repeattype;
return $this;
}