got rid of =& when constructing objects
This commit is contained in:
parent
5b012f8817
commit
d2e9df0d15
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ $changes = array(
|
||||||
require_once 'Config.php';
|
require_once 'Config.php';
|
||||||
require_once 'Config/Container.php';
|
require_once 'Config/Container.php';
|
||||||
|
|
||||||
$conf = &new Config();
|
$conf = new Config();
|
||||||
$root = &$conf->parseConfig($path, 'IniFile');
|
$root = &$conf->parseConfig($path, 'IniFile');
|
||||||
if (PEAR::isError($root)) {
|
if (PEAR::isError($root)) {
|
||||||
die($root->getMessage());
|
die($root->getMessage());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue