mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Tidied up web interface to use standard dateformats
This commit is contained in:
@@ -48,7 +48,7 @@ if ($_SESSION['userlevel'] >= "7")
|
||||
if ($vars['rev'] == $svnlog["rev"]) {
|
||||
echo('<span class="pagemenu-selected">');
|
||||
}
|
||||
$linktext = "r" . $svnlog["rev"] . " <small>" . date("d M H:i", strtotime($svnlog["date"])) . "</small>";
|
||||
$linktext = "r" . $svnlog["rev"] . " <small>" . date($config['dateformat']['byminute'], strtotime($svnlog["date"])) . "</small>";
|
||||
echo(generate_link($linktext, array('page' => 'device', 'device' => $device['device_id'], 'tab' => 'showconfig', 'rev' => $svnlog["rev"])));
|
||||
|
||||
if ($vars['rev'] == $svnlog["rev"]) {
|
||||
|
Reference in New Issue
Block a user