summaryrefslogtreecommitdiffstats
path: root/application/forms/EventEdit.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-10-27 13:03:31 +0200
committerBjörn Geiger2011-10-27 13:03:31 +0200
commit65d2bc38fb0d3a304a4728b71c65e60969b0d2ec (patch)
tree4468d58bf0cbbb3310c30c2fc2e8f5a077535654 /application/forms/EventEdit.php
parentchmod (diff)
downloadpoolctrl-65d2bc38fb0d3a304a4728b71c65e60969b0d2ec.tar.gz
poolctrl-65d2bc38fb0d3a304a4728b71c65e60969b0d2ec.tar.xz
poolctrl-65d2bc38fb0d3a304a4728b71c65e60969b0d2ec.zip
Edit Formular korrigiert
Diffstat (limited to 'application/forms/EventEdit.php')
-rwxr-xr-xapplication/forms/EventEdit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/forms/EventEdit.php b/application/forms/EventEdit.php
index 1c1e592..840ecca 100755
--- a/application/forms/EventEdit.php
+++ b/application/forms/EventEdit.php
@@ -164,7 +164,7 @@ class Application_Form_EventEdit extends Zend_Form
array('StringLength', false, array(0, 19)),
array('Date', false, array('format' => 'mm/dd/yyyy h:i a')),
array('DateGreaterThan', false, array('element' => 'End', 'compare' => 'Start', 'min' => $this->getElement('start')->getValue())),
- array('EventOverlapping', false, array('poolID' => $this->params['pbs_poolID'], 'start' => $this->getElement('start')->getValue())),
+ array('EventOverlapping', false, array('poolID' => $this->params['pbs_poolID'], 'start' => $this->getElement('start')->getValue(), 'eventID' => $this->params['eventID'])),
),
'required' => false,
'label' => 'End:',