diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-08-20 22:01:27 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-08-20 22:01:27 -0400 |
commit | 4e10cf0a7a9feddc5abfa4129a053b53ac0d4b6d (patch) | |
tree | 99fa5105195185900b3f2afc17059267d685dd5f /usr/local | |
parent | d72b41141d756b91ca98378ff2c13e230898eb9e (diff) | |
download | pfsense-4e10cf0a7a9feddc5abfa4129a053b53ac0d4b6d.zip pfsense-4e10cf0a7a9feddc5abfa4129a053b53ac0d4b6d.tar.gz |
Change size of columns to 10 and 55 for the number option rowhelper
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/services_dhcp.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php index 975e399..7c1a514 100755 --- a/usr/local/www/services_dhcp.php +++ b/usr/local/www/services_dhcp.php @@ -365,10 +365,10 @@ include("head.inc"); <script type="text/javascript"> rowname[0] = "number"; rowtype[0] = "textbox"; - rowsize[0] = "30"; + rowsize[0] = "10"; rowname[1] = "value"; rowtype[1] = "textbox"; - rowsize[1] = "30"; + rowsize[1] = "55"; </script> <script type="text/javascript" language="JavaScript"> @@ -740,10 +740,10 @@ include("head.inc"); ?> <tr> <td> - <input autocomplete="off" name="number<?php echo $counter; ?>" type="text" class="formfld" id="number<?php echo $counter; ?>" size="30" value="<?=htmlspecialchars($number);?>" /> + <input autocomplete="off" name="number<?php echo $counter; ?>" type="text" class="formfld" id="number<?php echo $counter; ?>" size="10" value="<?=htmlspecialchars($number);?>" /> </td> <td> - <input autocomplete="off" name="value<?php echo $counter; ?>" type="text" class="formfld" id="value<?php echo $counter; ?>" size="30" value="<?=htmlspecialchars($value);?>" /> + <input autocomplete="off" name="value<?php echo $counter; ?>" type="text" class="formfld" id="value<?php echo $counter; ?>" size="55" value="<?=htmlspecialchars($value);?>" /> </td> <td> <input type="image" src="/themes/<?echo $g['theme'];?>/images/icons/icon_x.gif" onclick="removeRow(this); return false;" value="Delete" /> |