diff options
author | lpsolit%gmail.com <> | 2006-02-22 23:25:24 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-02-22 23:25:24 +0100 |
commit | 947e78213b1a987b483a9c29f3436dc15a80d6e0 (patch) | |
tree | b4804b91f751265bdc15cc78289404ad7aea6f04 /template/en/default/admin/classifications | |
parent | b3cdb97bbfa7fa359d30267530dbc6f213ba33c3 (diff) | |
download | bugzilla-947e78213b1a987b483a9c29f3436dc15a80d6e0.tar.gz bugzilla-947e78213b1a987b483a9c29f3436dc15a80d6e0.tar.xz |
Bug 291459: Make textareas zoom large when in use - Patch by Marc Schumann <wurblzap@gmail.com> r=vladd a=justdave
Diffstat (limited to 'template/en/default/admin/classifications')
-rw-r--r-- | template/en/default/admin/classifications/add.html.tmpl | 9 | ||||
-rw-r--r-- | template/en/default/admin/classifications/edit.html.tmpl | 9 |
2 files changed, 15 insertions, 3 deletions
diff --git a/template/en/default/admin/classifications/add.html.tmpl b/template/en/default/admin/classifications/add.html.tmpl index d6a7c3880..d11a8d36c 100644 --- a/template/en/default/admin/classifications/add.html.tmpl +++ b/template/en/default/admin/classifications/add.html.tmpl @@ -31,7 +31,14 @@ </tr> <tr> <th align="right">Description:</th> - <td><textarea rows=4 cols=64 wrap=virtual name="description"></textarea></td> + <td> + [% INCLUDE global/textarea.html.tmpl + name = 'description' + minrows = 4 + cols = 64 + wrap = 'virtual' + %] + </td> </tr> </table> <hr> diff --git a/template/en/default/admin/classifications/edit.html.tmpl b/template/en/default/admin/classifications/edit.html.tmpl index 24ec9dacf..b00ea6853 100644 --- a/template/en/default/admin/classifications/edit.html.tmpl +++ b/template/en/default/admin/classifications/edit.html.tmpl @@ -32,8 +32,13 @@ </tr> <tr> <th align="right">Description:</th> - <td><textarea rows=4 cols=64 name="description"> - [% classification.description FILTER none %]</textarea> + <td> + [% INCLUDE global/textarea.html.tmpl + name = 'description' + minrows = 4 + cols = 64 + defaultcontent = classification.description + %] </td> </tr> <tr valign=top> |