summaryrefslogtreecommitdiff
path: root/Zend/tests/bug61011.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug61011.phpt')
-rw-r--r--Zend/tests/bug61011.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug61011.phpt b/Zend/tests/bug61011.phpt
index bce0e33209..599017860b 100644
--- a/Zend/tests/bug61011.phpt
+++ b/Zend/tests/bug61011.phpt
@@ -5,7 +5,7 @@ Bug #61011 (Crash when an exception is thrown by __autoload accessing a static p
function __autoload($name) {
throw new Exception($name);
}
-try {
+try {
echo AAA::$a; //zend_fetch_var_address_helper
} catch (Exception $e) {
try {
@@ -21,7 +21,7 @@ try {
isset(AAAA::$a); // ZEND_ISSET_ISEMPTY_VAR
} catch (Exception $e) {
try {
- $a = array("AAA", "foo");
+ $a = array("AAA", "foo");
$a(); //ZEND_INIT_FCALL_BY_NAME
} catch (Exception $e) {
}