Skip to content
Snippets Groups Projects
Commit e18898df authored by Robin Appelman's avatar Robin Appelman
Browse files

fix warning message that sometimes broke webdav

parent 92d08d51
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment