msopacua Tue Jan 28 05:04:18 2003 EDT Modified files: /php4/tests/lang bug20175.phpt Log: Fix parse error and edink's fear of bison errors Index: php4/tests/lang/bug20175.phpt diff -u php4/tests/lang/bug20175.phpt:1.5 php4/tests/lang/bug20175.phpt:1.6 --- php4/tests/lang/bug20175.phpt:1.5 Fri Nov 15 10:19:02 2002 +++ php4/tests/lang/bug20175.phpt Tue Jan 28 05:04:17 2003 @@ -111,10 +111,10 @@ 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; } }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php