]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/Form.class.php
A bit more refactoring of textarea element.
[timetracker.git] / WEB-INF / lib / form / Form.class.php
index a67c0c370c445e0ff9c6a3820a3abfac2670be6d..cf7890c60fd0ad656885916b34892d925da848a9 100644 (file)
@@ -77,8 +77,6 @@ class Form {
       case 'textarea':
         import('form.TextArea');
         $el = new TextArea($params['name']);
-        if (isset($params['cols'])) $el->setColumns($params['cols']);
-        if (isset($params['rows'])) $el->setRows($params['rows']);
         if (isset($params['maxlength'])) $el->setMaxLength($params['maxlength']);
         break;