diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-04-06 11:41:22 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-04-06 11:41:22 -0400 |
commit | 9ffede93c738f5e3a6d0e10a6c3f61e8844a131b (patch) | |
tree | 37cc1356fcc6e822e42c67ccb4e36c069b7cfe2f | |
parent | fe4df9b7b635cea04eb409a328f0a44c43768b0a (diff) | |
download | pfsense-9ffede93c738f5e3a6d0e10a6c3f61e8844a131b.zip pfsense-9ffede93c738f5e3a6d0e10a6c3f61e8844a131b.tar.gz |
Trigger drop down menus on 83 chars
-rw-r--r-- | etc/inc/pfsense-utils.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index b034ab8..7f67509 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -2244,9 +2244,9 @@ function display_top_tabs($tab_array) { $tabcharcount = 0; foreach ($tab_array as $ta) $tabcharcount = $tabcharcount + strlen($ta[0]); - // If the character count of the tab names is > 80 + // If the character count of the tab names is > 82 // then show a select item dropdown menubox. - if($tabcharcount > 80) { + if($tabcharcount > 82) { echo "Currently viewing: "; echo "<select name='TabSelect'>\n"; foreach ($tab_array as $ta) { @@ -3852,4 +3852,4 @@ function is_fqdn($fqdn) { } -?> +?>
\ No newline at end of file |