diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2012-12-13 16:42:50 -0800 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2012-12-13 16:42:50 -0800 |
commit | 3925683d46d399b0363a2ccbe0267a9e2922b237 (patch) | |
tree | f394f46d9557713444e68e728030029a6e20d011 | |
parent | 17b803d4488931603517ac6c11180fffae93a82f (diff) | |
parent | d8455492577e093e5aa0fc18fcf199082098987a (diff) | |
download | php-git-3925683d46d399b0363a2ccbe0267a9e2922b237.tar.gz |
Merge branch 'PHP-5.4' into PHP-5.5
-rw-r--r-- | ext/mysqli/tests/bug63398.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/bug63398.phpt b/ext/mysqli/tests/bug63398.phpt index 6dffa8c1f6..26d00c9420 100644 --- a/ext/mysqli/tests/bug63398.phpt +++ b/ext/mysqli/tests/bug63398.phpt @@ -10,7 +10,7 @@ if (!$IS_MYSQLND) { ?>
--FILE--
<?php
-$link = new mysqli('localhost', 'test', NULL, 'test');
+$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket); mysqli_close($link);
|