summaryrefslogtreecommitdiff
path: root/roundcubemail/program/lib/MDB2/Driver/pgsql.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-10-14 06:55:57 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-10-14 06:55:57 +0000
commit0033cad3d366722912342c2d280a6eb93117b521 (patch)
tree2b6e22a2b3fc11a289a5662f1b8a3da93159392c /roundcubemail/program/lib/MDB2/Driver/pgsql.php
parentb52434c188e56ee12f7c1823876ce8ae064854e3 (diff)
- removed deprecated returning value of new by reference
git-svn-id: https://svn.roundcube.net/trunk@3039 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib/MDB2/Driver/pgsql.php')
-rw-r--r--roundcubemail/program/lib/MDB2/Driver/pgsql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/MDB2/Driver/pgsql.php b/roundcubemail/program/lib/MDB2/Driver/pgsql.php
index 24af05655..de27bae7d 100644
--- a/roundcubemail/program/lib/MDB2/Driver/pgsql.php
+++ b/roundcubemail/program/lib/MDB2/Driver/pgsql.php
@@ -1188,7 +1188,7 @@ class MDB2_Result_pgsql extends MDB2_Result_Common
if ($object_class == 'stdClass') {
$row = (object) $row;
} else {
- $row = &new $object_class($row);
+ $row = new $object_class($row);
}
}
++$this->rownum;