Skip to content

Commit d09aa72

Browse files
authored
Inactivity message format fix (#171)
1 parent 7226cea commit d09aa72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/HTMLTree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ protected function draw_server_name() {
170170

171171
if (! is_null($server->inactivityTime())) {
172172
$m = sprintf(_('Inactivity will log you off at %s'),
173-
date('%H:%M',$server->inactivityTime()));
173+
date('H:i',$server->inactivityTime()));
174174
printf(' <img width="14" height="14" src="%s/timeout.png" title="%s" alt="%s"/>',IMGDIR,$m,'Timeout');
175175
}
176176
echo '</td></tr>';

0 commit comments

Comments
 (0)