only load mdb2 once as it was before
This commit is contained in:
parent
42cdc9f04f
commit
a5533ffc6a
1 changed files with 2 additions and 2 deletions
|
@ -366,8 +366,8 @@ class OC_DB {
|
|||
global $CONFIG_DBTYPE;
|
||||
global $DOCUMENTROOT;
|
||||
global $SERVERROOT;
|
||||
@oc_require_once('MDB2.php');
|
||||
if(!self::$DBConnection){
|
||||
@oc_require_once('MDB2.php');
|
||||
$options = array(
|
||||
'portability' => MDB2_PORTABILITY_ALL,
|
||||
'log_line_break' => '<br>',
|
||||
|
@ -413,8 +413,8 @@ class OC_DB {
|
|||
|
||||
public static function connectScheme(){
|
||||
self::connect();
|
||||
@oc_require_once('MDB2/Schema.php');
|
||||
if(!self::$schema){
|
||||
@oc_require_once('MDB2/Schema.php');
|
||||
self::$schema=&MDB2_Schema::factory(self::$DBConnection);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue