capitalize first letter of app type on link bar like we do on the settings page

git-svn-id: http://www.observium.org/svn/observer/trunk@2582 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Tom Laermans
2011-09-26 16:24:17 +00:00
parent 127c72b68e
commit 4e1eac3f93

View File

@@ -23,7 +23,7 @@ foreach (dbFetchRows("SELECT * FROM `applications` WHERE `device_id` = ?", array
} else {
#echo('<img src="images/icons/greyscale/'.$app['app_type'].'.png" class="optionicon" />');
}
echo(generate_link($app['app_type'],$link_array,array('app'=>$app['app_type'])));
echo(generate_link(ucfirst($app['app_type']),$link_array,array('app'=>$app['app_type'])));
if ($vars['app'] == $app['app_type']) { echo("</span>"); }
$sep = " | ";
}