summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/002.phpt
diff options
context:
space:
mode:
authorGeorg Richter <georg@php.net>2004-12-04 08:16:04 +0000
committerGeorg Richter <georg@php.net>2004-12-04 08:16:04 +0000
commit9751d9afaa3d06a9cd52f1453553feb915d3f6d1 (patch)
tree4c6dcc705a1a78be13f7c12d0a4f4522c3d71ec9 /ext/mysqli/tests/002.phpt
parent224d2479b39ac02a76c611423b784e9487db65c3 (diff)
downloadphp-git-9751d9afaa3d06a9cd52f1453553feb915d3f6d1.tar.gz
Fixed bug #30890 (testsuite)
Fixed bug #28817 (property problems in extended class)
Diffstat (limited to 'ext/mysqli/tests/002.phpt')
-rw-r--r--ext/mysqli/tests/002.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/002.phpt b/ext/mysqli/tests/002.phpt
index 7925f84fa8..255944a4ec 100644
--- a/ext/mysqli/tests/002.phpt
+++ b/ext/mysqli/tests/002.phpt
@@ -5,7 +5,7 @@ mysqli bind_result 1
include "connect.inc";
/*** test mysqli_connect 127.0.0.1 ***/
- $link = mysqli_connect("localhost", $user, $passwd);
+ $link = mysqli_connect($host, $user, $passwd);
mysqli_select_db($link, "test");
$rc = mysqli_query($link,"DROP TABLE IF EXISTS test_fetch_null");