]> git.sur5r.net Git - bacula/bacula/commitdiff
bacula-web: Renammed GetDbSize() to getDatabaseSize() in bweb class
authorDavide Franco <bacula-dev@dflc.ch>
Sat, 23 Jul 2011 07:56:01 +0000 (09:56 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:26 +0000 (14:49 +0200)
gui/bacula-web/includes/bweb.inc.php
gui/bacula-web/index.php

index 6804c7deb3ff52ba4667fce88e452eb7896e44c1..d2b8063e808fb5da18bfc6b97e706e4aa68c6c1a 100644 (file)
@@ -110,7 +110,7 @@ class Bweb
                }
        }
        
-       public function GetDbSize() 
+       public function getDatabaseSize() 
        {
                $db_size = 0;
                $query   = '';
index 5cd27a6fe97afa0c3ca7dbce501b29b115f9a4c5..ae205f67139f12efb6916e140027ab51d842d6f4 100644 (file)
@@ -25,7 +25,7 @@
        $dbSql->tpl->assign('stored_files', number_format($dbSql->getStoredFiles( FIRST_DAY, NOW ), 0, '.', "'" ) );
          
        // Database size
-       $dbSql->tpl->assign('database_size', $dbSql->GetDbSize());
+       $dbSql->tpl->assign('database_size', $dbSql->getDatabaseSize());
 
        // Overall stored bytes
        $stored_bytes = CUtils::Get_Human_Size( $dbSql->getStoredBytes( FIRST_DAY, NOW ) );