diff options
| author | Simon | 2011-03-06 18:24:51 +0100 |
|---|---|---|
| committer | Simon | 2011-03-06 18:24:51 +0100 |
| commit | 398f25856f0f8a398fd9326eb027816ee035b7a6 (patch) | |
| tree | 24cc098acaa80cb5a912e87ce245f4199999b8c8 /application/forms/BootosEdit.php | |
| parent | print_a funktion zum debugging hinzugefügt damit sie von überall benutzbar ... (diff) | |
| parent | Config fertig (diff) | |
| download | pbs2-398f25856f0f8a398fd9326eb027816ee035b7a6.tar.gz pbs2-398f25856f0f8a398fd9326eb027816ee035b7a6.tar.xz pbs2-398f25856f0f8a398fd9326eb027816ee035b7a6.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/forms/BootosEdit.php')
| -rw-r--r-- | application/forms/BootosEdit.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/application/forms/BootosEdit.php b/application/forms/BootosEdit.php index 3bc522f..89edf79 100644 --- a/application/forms/BootosEdit.php +++ b/application/forms/BootosEdit.php @@ -17,6 +17,14 @@ class Application_Form_BootosEdit extends Zend_Form 'label' => 'Title:', )); + $this->addElement('text', 'title', array( + 'filters' => array('StringTrim'), + 'validators' => array( + array('StringLength', false, array(0, 50)), + ), + 'required' => true, + 'label' => 'Title:', + )); $this->addElement('text', 'configID', array( 'filters' => array('StringTrim'), |
