diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-13 18:26:22 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-13 18:26:22 +0200 |
commit | 7de3160f0ed13e773fa5233af0566bcae3f99081 (patch) | |
tree | 535c0676e46270a58bf836a4f6e2a66c26765068 /system/helpers | |
parent | 50e57bcfe659f9992760a1972c6c20c1298537f5 (diff) |
Big text area was big. Reduced the size a little.
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/form_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 5720a06ec..47f93e748 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -249,7 +249,7 @@ if ( ! function_exists('form_textarea')) { function form_textarea($data = '', $value = '', $extra = '') { - $defaults = array('name' => (( ! is_array($data)) ? $data : ''), 'cols' => '90', 'rows' => '12'); + $defaults = array('name' => (( ! is_array($data)) ? $data : ''), 'cols' => '40', 'rows' => '10'); if ( ! is_array($data) OR ! isset($data['value'])) { |