From ab3cadca9e21879686a95832d1e4b15c8e6661e9 Mon Sep 17 00:00:00 2001 From: Davide Franco Date: Wed, 1 Dec 2010 14:12:32 +0100 Subject: [PATCH] bacula-web: Moved classes.inc.php to bweb.inc.php --- gui/bacula-web/{classes.inc.php => bweb.inc.php} | 0 gui/bacula-web/index.php | 2 +- gui/bacula-web/jobs.php | 2 +- gui/bacula-web/report.php | 2 +- gui/bacula-web/stats.php | 2 +- gui/bacula-web/test.php | 4 ++-- 6 files changed, 6 insertions(+), 6 deletions(-) rename gui/bacula-web/{classes.inc.php => bweb.inc.php} (100%) diff --git a/gui/bacula-web/classes.inc.php b/gui/bacula-web/bweb.inc.php similarity index 100% rename from gui/bacula-web/classes.inc.php rename to gui/bacula-web/bweb.inc.php diff --git a/gui/bacula-web/index.php b/gui/bacula-web/index.php index 4be4567559..a2b6ecb3f1 100644 --- a/gui/bacula-web/index.php +++ b/gui/bacula-web/index.php @@ -17,7 +17,7 @@ session_start(); require ("paths.php"); require($smarty_path."Smarty.class.php"); -include "classes.inc.php"; +include "bweb.inc.php"; $smarty = new Smarty(); $dbSql = new Bweb(); diff --git a/gui/bacula-web/jobs.php b/gui/bacula-web/jobs.php index a165641090..2f28c20f20 100644 --- a/gui/bacula-web/jobs.php +++ b/gui/bacula-web/jobs.php @@ -2,7 +2,7 @@ session_start(); require_once ("paths.php"); require_once ($smarty_path."Smarty.class.php"); - require_once ("classes.inc.php"); + require_once ("bweb.inc.php"); require_once ("config.inc.php"); $smarty = new Smarty(); diff --git a/gui/bacula-web/report.php b/gui/bacula-web/report.php index 75ac3a1871..2e1986af54 100644 --- a/gui/bacula-web/report.php +++ b/gui/bacula-web/report.php @@ -17,7 +17,7 @@ session_start(); require ("paths.php"); require($smarty_path."Smarty.class.php"); -include "classes.inc.php"; +include "bweb.inc.php"; $smarty = new Smarty; diff --git a/gui/bacula-web/stats.php b/gui/bacula-web/stats.php index 89a383a42b..7c876ea44c 100644 --- a/gui/bacula-web/stats.php +++ b/gui/bacula-web/stats.php @@ -27,7 +27,7 @@ // $modo_graph= Type of graph (bars, lines, linepoints, area, points, and pie). // $elapsed = Period in seconds to show complex graph (tipo_dato <3) 1 month = 18144000 session_start(); -require ("classes.inc.php"); +require_once ("bweb.inc.php"); $graph = new BCreateGraph(); diff --git a/gui/bacula-web/test.php b/gui/bacula-web/test.php index 840c109e38..86c9a77863 100644 --- a/gui/bacula-web/test.php +++ b/gui/bacula-web/test.php @@ -1,7 +1,7 @@ display('test.tpl'); -?> \ No newline at end of file +?> -- 2.39.5