diff options
| author | michael pereira | 2011-03-09 13:20:47 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-09 13:20:47 +0100 |
| commit | 5be378c7470c3a6f1195ff19468db432a9270047 (patch) | |
| tree | 3864f310e9d158ea6daa007ca15ad2e1ad517460 /application/forms/BootisoCreate.php | |
| parent | htaccess (diff) | |
| download | pbs2-5be378c7470c3a6f1195ff19468db432a9270047.tar.gz pbs2-5be378c7470c3a6f1195ff19468db432a9270047.tar.xz pbs2-5be378c7470c3a6f1195ff19468db432a9270047.zip | |
Controller Validation fix
Diffstat (limited to 'application/forms/BootisoCreate.php')
| -rw-r--r-- | application/forms/BootisoCreate.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/application/forms/BootisoCreate.php b/application/forms/BootisoCreate.php index 3d04124..6efb0c2 100644 --- a/application/forms/BootisoCreate.php +++ b/application/forms/BootisoCreate.php @@ -41,6 +41,7 @@ class Application_Form_BootisoCreate extends Zend_Form array('StringLength', false, array(0, 50)), ), 'required' => true, + 'size' => 50, 'label' => 'Path:', )); @@ -50,6 +51,7 @@ class Application_Form_BootisoCreate extends Zend_Form array('StringLength', false, array(0, 50)), ), 'required' => true, + 'size' => 50, 'label' => 'Serialnumber:', )); @@ -72,6 +74,7 @@ class Application_Form_BootisoCreate extends Zend_Form ), 'required' => true, 'label' => 'Public-Level:', + 'value' => '0' )); $this->addElement('submit', 'createbootiso', array( |
