From: Marcus Boerger Date: Sun, 30 Mar 2003 12:47:05 +0000 (+0000) Subject: bugfix #22961 by cynic@php.net X-Git-Tag: RELEASE_0_5~280 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ee6377b425fc7e566bce99bded8154025b3a688;p=php bugfix #22961 by cynic@php.net --- diff --git a/tests/classes/interface_doubled.phpt b/tests/classes/interface_doubled.phpt index 0a80097b9b..ecde84835b 100644 --- a/tests/classes/interface_doubled.phpt +++ b/tests/classes/interface_doubled.phpt @@ -30,7 +30,7 @@ interface if_f extends if_e implements if_a, if_b, if_c, if_d, if_e { class base { function test($class) { - echo "is_a(" . class_name($this) . ", $class) ". (is_a($this, $class) ? "yes\n" : "no\n"); + echo "is_a(" . get_class($this) . ", $class) ". (is_a($this, $class) ? "yes\n" : "no\n"); } }