Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2010-11-16 23:20:23 +0300
committerRobin Appelman <icewind1991@gmail.com>2010-11-16 23:20:23 +0300
commite18898dfe140b091840107aa47ac4ece7a68edd6 (patch)
treeda0d26bce2a94a4e3d429e5ec71a6f42d92af19f /inc
parent92d08d513b62d98799579addbb00bf5c42a66287 (diff)
fix warning message that sometimes broke webdav
Diffstat (limited to 'inc')
-rw-r--r--inc/MDB2/Driver/sqlite.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/MDB2/Driver/sqlite.php b/inc/MDB2/Driver/sqlite.php
index 63b66bf3fb9..abde86d596b 100644
--- a/inc/MDB2/Driver/sqlite.php
+++ b/inc/MDB2/Driver/sqlite.php
@@ -926,7 +926,7 @@ class MDB2_Result_sqlite extends MDB2_Result_Common
if ($object_class == 'stdClass') {
$row = (object) $row;
} else {
- $row = &new $object_class($row);
+ $row = new $object_class($row);
}
}
++$this->rownum;