actually use app section text instead of nicecasing the array key

git-svn-id: http://www.observium.org/svn/observer/trunk@3141 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Tom Laermans
2012-05-06 20:24:12 +00:00
parent baa4f44c4e
commit 854b652bf2
+1 -1
View File
@@ -20,7 +20,7 @@ foreach ($app_sections as $app_section => $app_section_text)
{
echo("<span class='pagemenu-selected'>");
}
echo(generate_link(nicecase($app_section),$vars,array('app_section'=>$app_section)));
echo(generate_link($app_section_text,$vars,array('app_section'=>$app_section)));
if ($vars['app_section'] == $app_section) { echo("</span>"); }
$sep = " | ";
}