summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorSebastian Wagner2011-09-08 14:32:18 +0200
committerSebastian Wagner2011-09-08 14:32:18 +0200
commit01acdd359c42acd33261fff0eb4a823332c7bb7d (patch)
tree2327cbb57cb7ac208e10496c298b2c0ad0c370bd /application
parentMerge branch 'master' of git.openslx.org:lsfks/projekte/poolctrl (diff)
downloadpoolctrl-01acdd359c42acd33261fff0eb4a823332c7bb7d.tar.gz
poolctrl-01acdd359c42acd33261fff0eb4a823332c7bb7d.tar.xz
poolctrl-01acdd359c42acd33261fff0eb4a823332c7bb7d.zip
minor
Diffstat (limited to 'application')
-rw-r--r--application/forms/EventAdd.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/application/forms/EventAdd.php b/application/forms/EventAdd.php
index af34f84..9f0a78d 100644
--- a/application/forms/EventAdd.php
+++ b/application/forms/EventAdd.php
@@ -124,7 +124,7 @@ class Application_Form_EventAdd extends Zend_Form
array('Date', false, array('format' => 'mm/dd/yyyy H:i')),
),
'required' => true,
- 'label' => 'Start (mm/dd/yyyy H:min):',
+ 'label' => 'Start:',
'value' => $this->start,
));
@@ -136,7 +136,7 @@ class Application_Form_EventAdd extends Zend_Form
array('DateGreaterThan', false, array('element' => 'End', 'compare' => 'Start', 'min' => $this->getElement('start')->getValue())),
),
'required' => false,
- 'label' => 'End (mm/dd/yyyy H:min):',
+ 'label' => 'End:',
'value' => $this->end,
));
$this->getElement('end')->addPrefixPath('Poolctrl_Validate', 'Poolctrl/Validator/', 'validate');
@@ -154,7 +154,8 @@ class Application_Form_EventAdd extends Zend_Form
array('StringLength', false, array(0, 16)),
),
'required' => false,
- 'label' => 'Repeat end (mm/dd/yyyy H:min):',
+ 'label' => 'Repeat end:',
+ 'value' => 'mm/dd/yyyy H:min'
));
$this->addElement('text', 'participants', array(