diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-14 06:55:57 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-14 06:55:57 +0000 |
| commit | 0033cad3d366722912342c2d280a6eb93117b521 (patch) | |
| tree | 2b6e22a2b3fc11a289a5662f1b8a3da93159392c /roundcubemail/program/lib/MDB2.php | |
| parent | b52434c188e56ee12f7c1823876ce8ae064854e3 (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.php')
| -rw-r--r-- | roundcubemail/program/lib/MDB2.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/MDB2.php b/roundcubemail/program/lib/MDB2.php index 762eb068a..6615aef2f 100644 --- a/roundcubemail/program/lib/MDB2.php +++ b/roundcubemail/program/lib/MDB2.php @@ -1926,7 +1926,7 @@ class MDB2_Driver_Common extends PEAR return $err; } $this->{$property} = new $class_name($this->db_index); - $this->modules[$module] =& $this->{$property}; + $this->modules[$module] = $this->{$property}; if ($version) { // this will be used in the connect method to determine if the module // needs to be loaded with a different version if the server |
