]> git.sur5r.net Git - bacula/bacula/commitdiff
bacula-web: Added CDB extend to PHP Databases abstraction classes
authorDavide Franco <bacula-dev@dflc.ch>
Fri, 24 Jun 2011 15:49:58 +0000 (17:49 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:16 +0000 (14:49 +0200)
gui/bacula-web/includes/db/cmysqldb.class.php
gui/bacula-web/includes/db/cpgsqldb.class.php
gui/bacula-web/includes/db/csqlitedb.class.php

index 696197846be1414620f9d3514c694806ec2a8d7b..9528993e4a5959dbe013f8decaede1fde66d4b0d 100644 (file)
@@ -15,7 +15,7 @@
 +-------------------------------------------------------------------------+ 
 */
 
-class CMYSQLDB 
+class CMYSQLDB extends CDB
 {      
        public function __constructor()
        {
index 6b5247a20c6276119b2ff4471b52d50140732e69..4191bd14eb5a1fce976dd5a7410189e33343cf70 100644 (file)
@@ -15,7 +15,7 @@
 +-------------------------------------------------------------------------+ 
 */
 
-class CPGSQLDB 
+class CPGSQLDB extends CDB
 {      
        public function __constructor()
        {
@@ -28,4 +28,4 @@ class CPGSQLDB
        }
 }
 
-?>
\ No newline at end of file
+?>
index ee1d0b29ead5a6261d1eccbc39bbac3d3bb46d7a..8ab842b91c00c92ff3a453d8864c59e8c4083222 100644 (file)
@@ -15,7 +15,7 @@
 +-------------------------------------------------------------------------+ 
 */
 
-class CSQLITEDB
+class CSQLITEDB extends CDB
 {      
        public function __constructor()
        {
@@ -28,4 +28,4 @@ class CSQLITEDB
        }
 }
 
-?>
\ No newline at end of file
+?>