diff options
author | Guy Brand <gb@unistra.fr> | 2010-09-23 08:41:38 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-09-23 08:41:38 +0200 |
commit | 80c36a2739e745db2be34f09c8f321bfdb5e6166 (patch) | |
tree | cc15cdb12583b6536398f3e0993527971ef26b62 /_test/cases/inc/parser/parser.inc.php | |
parent | 42de51b18d302d07e109c24dfb0ae237e6d38643 (diff) | |
download | rpg-80c36a2739e745db2be34f09c8f321bfdb5e6166.tar.gz rpg-80c36a2739e745db2be34f09c8f321bfdb5e6166.tar.bz2 |
fixed new calls in test cases according to PHP5 conventions
Diffstat (limited to '_test/cases/inc/parser/parser.inc.php')
-rw-r--r-- | _test/cases/inc/parser/parser.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_test/cases/inc/parser/parser.inc.php b/_test/cases/inc/parser/parser.inc.php index 22574d579..74d956f43 100644 --- a/_test/cases/inc/parser/parser.inc.php +++ b/_test/cases/inc/parser/parser.inc.php @@ -33,8 +33,8 @@ class TestOfDoku_Parser extends UnitTestCase { } function setup() { - $this->P = & new Doku_Parser(); - $this->H = & new Doku_Handler(); + $this->P = new Doku_Parser(); + $this->H = new Doku_Handler(); $this->P->Handler = & $this->H; } |