summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--application/forms/EventEdit.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/application/forms/EventEdit.php b/application/forms/EventEdit.php
index 112edde..c74f5ab 100644
--- a/application/forms/EventEdit.php
+++ b/application/forms/EventEdit.php
@@ -80,8 +80,8 @@ class Application_Form_EventEdit extends Zend_Form
array('StringLength', false, array(0, 50)),
),
'required' => true,
- 'label' => 'Start (mm/dd/yyyy - H:min):',
- 'value' => date ('m/d/Y - H:i', strtotime($_POST['start'])),
+ 'label' => 'Start (mm/dd/yyyy H:min):',
+ 'value' => date ('m/d/Y H:i', strtotime($_POST['start'])),
));
$this->addElement('text', 'end', array(
@@ -90,7 +90,7 @@ class Application_Form_EventEdit extends Zend_Form
array('StringLength', false, array(0, 50)),
),
'required' => true,
- 'label' => 'End (mm/dd/yyyy - H:min):',
+ 'label' => 'End (mm/dd/yyyy H:min):',
'value' => date ('m/d/Y H:i', strtotime($_POST['end'])),
));