]> git.sur5r.net Git - bacula/bacula/commitdiff
bacula-web: php code clean up and removed useless configuration parameter
authorDavide Franco <bacula-dev@dflc.ch>
Mon, 14 Mar 2011 17:57:46 +0000 (18:57 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:07 +0000 (14:49 +0200)
 - Made some php code clean up in index.php
 - Removed useless IndexReport option in bacula.conf

gui/bacula-web/configs/bacula.conf
gui/bacula-web/index.php

index 12845b920e0ff1bb8a7255a833ddeb192395f9a4..2f8e88debc7afe15c72b6e457525fe9b6e44d630 100644 (file)
@@ -2,9 +2,9 @@
 ; root = /bacula
 root = '/bacula-web'
 
+; This option will not be used from now.
 ; Show a box with a detailed report at index or Status report
-; I'll remove this in future versions.
-IndexReport = 0
+; IndexReport = 0
 
 ; Secs since last run. Default 24h.
 ; Unused in this version
index 914a26e4cf9d22cdbb71a428c3a32e6eecffadb0..39543614fed7b5ceaa94735cbbc6f5b6c8447a54 100644 (file)
@@ -46,6 +46,7 @@ if( $mode == false )
 
 $smarty->assign( "mode", $mode );
 
+/*
 // Determine which template to show
 $indexreport = $dbSql->get_config_param( "IndexReport" );
 
@@ -54,6 +55,7 @@ if( $indexreport == 0 ) {
 }else {
        $smarty->assign( "last_report", "report_select.tpl" );
 }
+*/
 
 // Assign to template catalogs number
 $smarty->assign( "dbs", $dbSql->Get_Nb_Catalogs() );
@@ -66,10 +68,6 @@ if ( count($dbSql->dbs) >1 ) {
 }
 */
 
-// generaldata.tpl & last_run_report.tpl ( Last 24 hours report )
-$last24bytes = "";
-$query = "";
-
 // Stored files number 
 $totalfiles = $dbSql->GetStoredFiles( ALL );
 $smarty->assign('stored_files',$totalfiles);