summaryrefslogtreecommitdiffstats
path: root/application/forms/EventAdd.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-09-08 13:58:36 +0200
committerBjörn Geiger2011-09-08 13:58:36 +0200
commitc878ca556a90bf0eae9d2d26826c7772dc7c94c4 (patch)
treec29659dfa9547b8f93216523d50e22bbfaf14559 /application/forms/EventAdd.php
parentMerge branch 'master' of git.openslx.org:lsfks/projekte/poolctrl (diff)
downloadpoolctrl-c878ca556a90bf0eae9d2d26826c7772dc7c94c4.tar.gz
poolctrl-c878ca556a90bf0eae9d2d26826c7772dc7c94c4.tar.xz
poolctrl-c878ca556a90bf0eae9d2d26826c7772dc7c94c4.zip
kleine Korrektur
Diffstat (limited to 'application/forms/EventAdd.php')
-rw-r--r--application/forms/EventAdd.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/forms/EventAdd.php b/application/forms/EventAdd.php
index b4db7cf..af34f84 100644
--- a/application/forms/EventAdd.php
+++ b/application/forms/EventAdd.php
@@ -133,7 +133,7 @@ class Application_Form_EventAdd extends Zend_Form
'validators' => array(
array('StringLength', false, array(0, 16)),
array('Date', false, array('format' => 'mm/dd/yyyy H:i')),
- array('DateGreaterThan', false, array('min' => $this->getElement('start')->getValue())),
+ array('DateGreaterThan', false, array('element' => 'End', 'compare' => 'Start', 'min' => $this->getElement('start')->getValue())),
),
'required' => false,
'label' => 'End (mm/dd/yyyy H:min):',