Skip to content

Commit

Permalink
Fix: textarea too small
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Nov 7, 2014
1 parent 0b70d26 commit 3d5a45e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions htdocs/core/tpl/admin_extrafields_add.tpl.php
Expand Up @@ -87,8 +87,8 @@ function init_typeoffields(type)
</td>
<td>
<table class="nobordernopadding">
<tr><td width="30%">
<textarea name="param" id="param"><?php echo GETPOST('param'); ?></textarea>
<tr><td>
<textarea name="param" id="param" cols="80" rwos="<?php echo ROWS_4 ?>"><?php echo GETPOST('param'); ?></textarea>
</td><td id="helpselect"><?php print $form->textwithpicto('', $langs->trans("ExtrafieldParamHelpselect"),1,0)?></td>
<td id="helpsellist"><?php print $form->textwithpicto('', $langs->trans("ExtrafieldParamHelpsellist"),1,0)?></td></tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions htdocs/core/tpl/admin_extrafields_edit.tpl.php
Expand Up @@ -98,8 +98,8 @@ function init_typeoffields(type)
</td>
<td>
<table class="nobordernopadding">
<tr><td width="30%">
<textarea name="param" id="param"><?php echo $param_chain; ?></textarea>
<tr><td>
<textarea name="param" id="param" cols="80" rows="<?php echo ROWS_4 ?>"><?php echo $param_chain; ?></textarea>
</td><td><?php print $form->textwithpicto('', $langs->trans("ExtrafieldParamHelp".$type),1,0)?></td></tr>
</table>
</td>
Expand Down

0 comments on commit 3d5a45e

Please sign in to comment.