Commit: b1a6a1703910d77ef7932cd4b03a36a4dbabc917 Author: Nikita Popov <ni...@php.net> Thu, 28 Mar 2013 18:23:23 +0100 Parents: 127c78cb76b9f5431bd0b37cb8c253aa6dbe358a Branches: PHP-5.5 master
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=b1a6a1703910d77ef7932cd4b03a36a4dbabc917 Log: Fix Bug #64545: PHP Error in ef93a93ee21bce9218188 Test was using die "Foo" instead of die("Foo"). Bugs: https://bugs.php.net/64545 Changed paths: M sapi/cli/tests/bug64529.phpt Diff: diff --git a/sapi/cli/tests/bug64529.phpt b/sapi/cli/tests/bug64529.phpt index 7ca13a4..d375572 100644 --- a/sapi/cli/tests/bug64529.phpt +++ b/sapi/cli/tests/bug64529.phpt @@ -7,7 +7,7 @@ if (substr(PHP_OS, 0, 3) == "WIN") { } exec('which expect', $output, $ret); if ($ret) { - die "skip no expect installed"; + die("skip no expect installed"); } ?> --FILE-- -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php