X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=client_edit.php;h=cf4d1541674d97aee9e61ecd8a660bdab9e87fc9;hb=ad98b13400fdc2fa2299a22c9bd54c4cd27960c3;hp=87116cdf0287dafb3e323751f332c9373acece14;hpb=34d2d3c1537f844bc386d75751180db2848c99b3;p=timetracker.git diff --git a/client_edit.php b/client_edit.php index 87116cdf..cf4d1541 100644 --- a/client_edit.php +++ b/client_edit.php @@ -62,7 +62,7 @@ if ($request->isPost()) { $form = new Form('clientForm'); $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id)); $form->addInput(array('type'=>'text','name'=>'name','maxlength'=>'100','style'=>'width: 350px;','value'=>$cl_name)); -$form->addInput(array('type'=>'textarea','name'=>'address','maxlength'=>'255','style'=>'width: 350px;','rows'=>'5','value'=>$cl_address)); +$form->addInput(array('type'=>'textarea','name'=>'address','maxlength'=>'255','style'=>'width: 350px; height: 80px;','value'=>$cl_address)); $form->addInput(array('type'=>'floatfield','name'=>'tax','size'=>'10','format'=>'.2','value'=>$cl_tax)); $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status, 'data'=>array(ACTIVE=>$i18n->getKey('dropdown.status_active'),INACTIVE=>$i18n->getKey('dropdown.status_inactive'))));