From: Davide Franco Date: Fri, 17 Dec 2010 16:57:58 +0000 (+0100) Subject: bacula-web: Fixed elpased time format in bweb.inc.php X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=37f19bac783a903f9eaa999a5d887cb03bf21d1d;p=bacula%2Fbacula bacula-web: Fixed elpased time format in bweb.inc.php --- diff --git a/gui/bacula-web/bweb.inc.php b/gui/bacula-web/bweb.inc.php index d0211024b2..e85efe96ba 100644 --- a/gui/bacula-web/bweb.inc.php +++ b/gui/bacula-web/bweb.inc.php @@ -480,9 +480,9 @@ class Bweb extends DB { } // Verify if elapsed time is more than 1 day if ( $total_elapsed > 86400 ) { - return gmstrftime("%d days %H:%M:%S", $total_elapsed ); + return date("%d days H:i:s", $total_elapsed ); }else { - return gmstrftime("%H:%M:%S", $total_elapsed ); + return date("H:i:s", $total_elapsed ); } } }