diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2012-12-13 16:54:16 -0800 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2012-12-13 16:54:16 -0800 |
commit | 7a49e09fd8ef612df45e540a5b1895b045c46235 (patch) | |
tree | fb25f815b9b14c7fbe6d11fd47f117e2b6199798 /ext/mysqli | |
parent | 9d1bc1b622f1c28a55fe4dc4e87e111aff6ed8b8 (diff) | |
download | php-git-7a49e09fd8ef612df45e540a5b1895b045c46235.tar.gz |
Need connect.inc here
Diffstat (limited to 'ext/mysqli')
-rw-r--r-- | ext/mysqli/tests/bug63398.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mysqli/tests/bug63398.phpt b/ext/mysqli/tests/bug63398.phpt index 26d00c9420..f3cd322615 100644 --- a/ext/mysqli/tests/bug63398.phpt +++ b/ext/mysqli/tests/bug63398.phpt @@ -10,6 +10,7 @@ if (!$IS_MYSQLND) { ?>
--FILE--
<?php
+require 'connect.inc'; $link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket); mysqli_close($link);
|