diff options
author | alecpl <alec@alec.pl> | 2009-10-14 06:55:57 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-10-14 06:55:57 +0000 |
commit | ab46578d98853cfddab3bd47456c918feb3584bf (patch) | |
tree | 0fe326c0375df2e3def3f97e9263f227e399c854 /program/lib/MDB2.php | |
parent | 65c0a0e591d917e87d54f499f9b25da522746aed (diff) |
- removed deprecated returning value of new by reference
Diffstat (limited to 'program/lib/MDB2.php')
-rw-r--r-- | program/lib/MDB2.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/MDB2.php b/program/lib/MDB2.php index 762eb068a..6615aef2f 100644 --- a/program/lib/MDB2.php +++ b/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 |