diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-05-27 00:05:10 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-05-27 00:05:10 +0000 |
commit | 5789d62e08ab35e16026d9979b516334f5764287 (patch) | |
tree | 404c1de72441b4669b6b448eb7efccefae3b9421 | |
parent | 7ee2fccf2259e4776b2b0ce504eefeb1e1252447 (diff) | |
download | pfsense-5789d62e08ab35e16026d9979b516334f5764287.zip pfsense-5789d62e08ab35e16026d9979b516334f5764287.tar.gz |
Increase field sizes.
-rw-r--r-- | usr/local/www/firewall_system_tunables_edit.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/firewall_system_tunables_edit.php b/usr/local/www/firewall_system_tunables_edit.php index 5e3e6d9..0ed6324 100644 --- a/usr/local/www/firewall_system_tunables_edit.php +++ b/usr/local/www/firewall_system_tunables_edit.php @@ -95,19 +95,19 @@ include("head.inc"); <tr> <td width="22%" valign="top" class="vncellreq">Tunable</td> <td width="78%" class="vtable"> - <input size="55" name="tunable" value="<?php echo $pconfig['tunable']; ?>"> + <input size="65" name="tunable" value="<?php echo $pconfig['tunable']; ?>"> </td> </tr> <tr> <td width="22%" valign="top" class="vncellreq">Description</td> <td width="78%"> - <textarea rows="7" cols="40" name="desc"><?php echo $pconfig['desc']; ?></textarea> + <textarea rows="7" cols="50" name="desc"><?php echo $pconfig['desc']; ?></textarea> </td> </tr> <tr> <td width="22%" valign="top" class="vncellreq">Value</td> <td width="78%"> - <input size="55" name="value" value="<?php echo $pconfig['value']; ?>"> + <input size="65" name="value" value="<?php echo $pconfig['value']; ?>"> </td> </tr> <tr> |