alecpl
2009-10-14 ab46578d98853cfddab3bd47456c918feb3584bf
- removed deprecated returning value of new by reference


8 files modified
18 ■■■■ changed files
program/lib/MDB2.php 2 ●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/mssql.php 2 ●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/mysql.php 2 ●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/mysqli.php 2 ●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/pgsql.php 2 ●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/sqlite.php 2 ●●● patch | view | raw | blame | history
program/lib/Mail/mimeDecode.php 2 ●●● patch | view | raw | blame | history
program/lib/PEAR.php 4 ●●●● patch | view | raw | blame | history
program/lib/MDB2.php
@@ -1926,7 +1926,7 @@
                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
program/lib/MDB2/Driver/mssql.php
@@ -911,7 +911,7 @@
            if ($object_class == 'stdClass') {
                $row = (object) $row;
            } else {
                $row = &new $object_class($row);
                $row = new $object_class($row);
            }
        }
        ++$this->rownum;
program/lib/MDB2/Driver/mysql.php
@@ -1393,7 +1393,7 @@
            if ($object_class == 'stdClass') {
                $row = (object) $row;
            } else {
                $row = &new $object_class($row);
                $row = new $object_class($row);
            }
        }
        ++$this->rownum;
program/lib/MDB2/Driver/mysqli.php
@@ -1409,7 +1409,7 @@
            if ($object_class == 'stdClass') {
                $row = (object) $row;
            } else {
                $row = &new $object_class($row);
                $row = new $object_class($row);
            }
        }
        ++$this->rownum;
program/lib/MDB2/Driver/pgsql.php
@@ -1188,7 +1188,7 @@
            if ($object_class == 'stdClass') {
                $row = (object) $row;
            } else {
                $row = &new $object_class($row);
                $row = new $object_class($row);
            }
        }
        ++$this->rownum;
program/lib/MDB2/Driver/sqlite.php
@@ -949,7 +949,7 @@
            if ($object_class == 'stdClass') {
                $row = (object) $row;
            } else {
                $row = &new $object_class($row);
                $row = new $object_class($row);
            }
        }
        ++$this->rownum;
program/lib/Mail/mimeDecode.php
@@ -321,7 +321,7 @@
                    break;
                case 'message/rfc822':
                    $obj = &new Mail_mimeDecode($body);
                    $obj = new Mail_mimeDecode($body);
                    $return->parts[] = $obj->decode(array('include_bodies' => $this->_include_bodies,
                                                          'decode_bodies'  => $this->_decode_bodies,
                                                          'decode_headers' => $this->_decode_headers));
program/lib/PEAR.php
@@ -560,10 +560,10 @@
            $ec = 'PEAR_Error';
        }
        if ($skipmsg) {
            $a = &new $ec($code, $mode, $options, $userinfo);
            $a = new $ec($code, $mode, $options, $userinfo);
            return $a;
        } else {
            $a = &new $ec($message, $code, $mode, $options, $userinfo);
            $a = new $ec($message, $code, $mode, $options, $userinfo);
            return $a;
        }
    }