From 8b04aabc2570666c6a35cc55838d73269c59e496 Mon Sep 17 00:00:00 2001 From: Davide Franco Date: Mon, 25 Jul 2011 22:21:57 +0200 Subject: [PATCH] bacula-web: Renammed function Get_BackupJob_Names() in bweb class - Function Get_BackupJob_Names() become getJobsName() --- gui/bacula-web/includes/bweb.inc.php | 2 +- gui/bacula-web/index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/bacula-web/includes/bweb.inc.php b/gui/bacula-web/includes/bweb.inc.php index 8f31664dd5..dfc4b2c3e5 100644 --- a/gui/bacula-web/includes/bweb.inc.php +++ b/gui/bacula-web/includes/bweb.inc.php @@ -326,7 +326,7 @@ class Bweb return $pools; } - public function Get_BackupJob_Names() + public function getJobsName() { $query = ''; $result = ''; diff --git a/gui/bacula-web/index.php b/gui/bacula-web/index.php index f69ca599fa..f9ab7e9c59 100644 --- a/gui/bacula-web/index.php +++ b/gui/bacula-web/index.php @@ -40,7 +40,7 @@ $dbSql->tpl->assign('clientes_totales',$nb_clients["nb_client"] ); // Backup Job list - $dbSql->tpl->assign( 'jobs_list', $dbSql->Get_BackupJob_Names() ); + $dbSql->tpl->assign( 'jobs_list', $dbSql->getJobsName() ); // Clients list -- 2.39.5