From: Davide Franco Date: Tue, 14 Dec 2010 16:30:19 +0000 (+0100) Subject: bacula-web: Changed day format in Stored bytes graph X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f07cc59d0e1de7b29607a40a0685e72a7d5e79c9;p=bacula%2Fbacula bacula-web: Changed day format in Stored bytes graph - Changed to Day of week / Day (example: Tue 14) --- diff --git a/gui/bacula-web/bweb.inc.php b/gui/bacula-web/bweb.inc.php index 8ff3eb90f3..7aef804d30 100644 --- a/gui/bacula-web/bweb.inc.php +++ b/gui/bacula-web/bweb.inc.php @@ -624,7 +624,7 @@ class Bweb extends DB { $stored_bytes = 0; $tmp = $result->fetchRow( DB_FETCHMODE_ASSOC ); - $day = date( "d/m", strtotime($end_date) ); + $day = date( "D d", strtotime($end_date) ); if( isset( $tmp['stored_bytes'] ) ) { $hbytes = $this->human_file_size( $tmp['stored_bytes'], 3, 'GB');