diff options
author | thompsa <andy@fud.org.nz> | 2010-05-14 11:35:59 +1200 |
---|---|---|
committer | thompsa <andy@fud.org.nz> | 2010-05-14 11:36:14 +1200 |
commit | 963725238de02cd83107129c979e779d991e19cd (patch) | |
tree | bad5bf0f213d61406b79172050e6ff9907dfa889 /usr/local | |
parent | 5337fe2e1a83e14b18c383780f251ade005fab1c (diff) | |
download | pfsense-963725238de02cd83107129c979e779d991e19cd.zip pfsense-963725238de02cd83107129c979e779d991e19cd.tar.gz |
fix seperation between href and class
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/fbegin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc index 9dda6cc..5f02b69 100755 --- a/usr/local/www/fbegin.inc +++ b/usr/local/www/fbegin.inc @@ -74,7 +74,7 @@ function output_menu($arrayitem, $target="") { foreach($arrayitem as $item) { if($target) $targetinfo = "target='{$target}'"; - echo '<li><a ' . $targetinfo. ' href="' . $item[1] . ' "class="navlnk">' . $item[0] . '</a></li>' . "\n"; + echo '<li><a ' . $targetinfo. ' href="' . $item[1] . '" class="navlnk">' . $item[0] . '</a></li>' . "\n"; } } |