summaryrefslogtreecommitdiffstats
path: root/application/forms
diff options
context:
space:
mode:
authorBjörn Geiger2011-09-22 18:08:43 +0200
committerBjörn Geiger2011-09-22 18:08:43 +0200
commit923a03912daaefabbaa3b43a9c32519338892779 (patch)
tree8f581bcffbc77c4d262b51a38e766aeccecdd4ce /application/forms
parentminor (diff)
downloadpoolctrl-923a03912daaefabbaa3b43a9c32519338892779.tar.gz
poolctrl-923a03912daaefabbaa3b43a9c32519338892779.tar.xz
poolctrl-923a03912daaefabbaa3b43a9c32519338892779.zip
weitere Korrektur
Diffstat (limited to 'application/forms')
-rwxr-xr-xapplication/forms/EventAdd.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/forms/EventAdd.php b/application/forms/EventAdd.php
index 14e5e18..de967cc 100755
--- a/application/forms/EventAdd.php
+++ b/application/forms/EventAdd.php
@@ -206,8 +206,8 @@ class Application_Form_EventAdd extends Zend_Form
$repeatendfield = $this->createElement('select','repeatend');
$repeatendfield ->setLabel('Repeat End:');
- if(count($this->$repeatendlist)>0){
- foreach($this->$repeatendlist as $end => $e){
+ if(count($this->repeatendlist)>0){
+ foreach($this->repeatendlist as $end => $e){
$title = $e->getTitle();
$id = $e->getID();
$repeatendfield->addMultiOption($id, $title);