diff options
Diffstat (limited to 'Zend/tests/bug50394.phpt')
-rw-r--r-- | Zend/tests/bug50394.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/bug50394.phpt b/Zend/tests/bug50394.phpt index 60b9d34582..e3beb2a2e4 100644 --- a/Zend/tests/bug50394.phpt +++ b/Zend/tests/bug50394.phpt @@ -6,7 +6,7 @@ function inc( &$x ) { $x++; } class Proxy { function __call( $name, $args ) { - echo "$name called!\n"; + echo "$name called!\n"; call_user_func_array( 'inc', $args ); } } |