only load mdb2 once as it was before

This commit is contained in:
Robin Appelman 2011-02-06 01:54:07 +01:00
parent f2627dd757
commit 1df0397163
1 changed files with 2 additions and 2 deletions

View File

@ -315,8 +315,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>',
@ -362,8 +362,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);
}
}