diff options
Diffstat (limited to 'ext/mysqli/tests/bug72701.phpt')
-rw-r--r-- | ext/mysqli/tests/bug72701.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/bug72701.phpt b/ext/mysqli/tests/bug72701.phpt index 8e6873aa33..2145de9b48 100644 --- a/ext/mysqli/tests/bug72701.phpt +++ b/ext/mysqli/tests/bug72701.phpt @@ -19,7 +19,7 @@ require_once("connect.inc"); $con = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket); if (mysqli_connect_errno()) { - echo "Failed to connect to MySQL: " . mysqli_connect_error(); + echo "Failed to connect to MySQL: " . mysqli_connect_error(); } var_dump(preg_match(",(127.0.0.1|localhost) via .*,i", mysqli_get_host_info($con))); |