summaryrefslogtreecommitdiffstats
path: root/lib/database.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-04-17 11:09:42 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-04-17 11:10:03 +0200
commitfde08b2389514121e548148a86c88ee303ae72e3 (patch)
tree3f06b133959edcfbb137fd85cba770de74338e65 /lib/database.php
parent5f69a7c5e5067b0210c4207b588629c25cd42e33 (diff)
downloadnextcloud-server-fde08b2389514121e548148a86c88ee303ae72e3.tar.gz
nextcloud-server-fde08b2389514121e548148a86c88ee303ae72e3.zip
installer now works when using mysql
Diffstat (limited to 'lib/database.php')
-rw-r--r--lib/database.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/database.php b/lib/database.php
index b620009bf50..970e43c1227 100644
--- a/lib/database.php
+++ b/lib/database.php
@@ -279,7 +279,7 @@ class OC_DB {
// Connect if this did not happen before
if(!self::$schema){
require_once('MDB2/Schema.php');
- self::$schema=&MDB2_Schema::factory(self::$DBConnection);
+ self::$schema=MDB2_Schema::factory(self::$DBConnection);
}
return true;