summaryrefslogtreecommitdiffstats
path: root/application/forms
diff options
context:
space:
mode:
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);