From ac3dc9d95eb75c15c6221688a645a4b74a4a320c Mon Sep 17 00:00:00 2001 From: Melvyn Sopacua Date: Tue, 28 Jan 2003 10:04:17 +0000 Subject: [PATCH] Fix parse error and edink's fear of bison errors --- tests/lang/bug20175.phpt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/lang/bug20175.phpt b/tests/lang/bug20175.phpt index 69b0044e7f..7243bafda1 100644 --- a/tests/lang/bug20175.phpt +++ b/tests/lang/bug20175.phpt @@ -111,10 +111,10 @@ class oop_test { function oop_static() { echo "oop_static()\n"; - if (!isset(self::oop_value)) { - self::oop_value = & new oop_class; + if (!isset(self::$oop_value)) { + self::$oop_value = & new oop_class; } - echo self::oop_value->oop_name; + echo self::$oop_value->oop_name; } } -- 2.50.1