summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/create-test.php
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2015-09-23 17:53:22 +0200
committerBob Weinand <bobwei9@hotmail.com>2015-09-23 17:53:29 +0200
commit4a174ca7e602fb20d12b8b665eaf3ce5d4d46bd3 (patch)
tree47a850b3a3411b943ff421b0cd37af6583b03809 /sapi/phpdbg/create-test.php
parentaba42e3dda6e3210cf26e667badd2eb7766dae4e (diff)
downloadphp-git-4a174ca7e602fb20d12b8b665eaf3ce5d4d46bd3.tar.gz
Fixed bug #70532 (respect set_exception_handler in phpdbg)
Diffstat (limited to 'sapi/phpdbg/create-test.php')
-rw-r--r--sapi/phpdbg/create-test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/phpdbg/create-test.php b/sapi/phpdbg/create-test.php
index 6de10bd56f..5dc1ba48bb 100644
--- a/sapi/phpdbg/create-test.php
+++ b/sapi/phpdbg/create-test.php
@@ -98,11 +98,11 @@ stream_set_blocking(STDIN, true);
print "\n";
if (!isset($name)) {
- print "Specifiy the test description: ";
+ print "Specify the test description: ";
$desc = trim(fgets(STDIN));
}
while (!isset($testfile)) {
- print "Specifiy the test file name (leave empty to write to stderr): ";
+ print "Specify the test file name (leave empty to write to stderr): ";
$testfile = trim(fgets(STDIN));
if ($testfile != "" && file_exists($testfile)) {
print "That file already exists. Type y or yes to overwrite: ";