summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorGeorg Richter <georg@php.net>2005-02-25 08:43:41 +0000
committerGeorg Richter <georg@php.net>2005-02-25 08:43:41 +0000
commit2e2bfb83c435c6ff2a4fd86c49703c0d130c01a4 (patch)
treeae903cf6542a2a8629f5417c9c43e41d71d71d50 /ext
parent5ecdba358cc9796a5c8f88217c7e9b82a5fa5782 (diff)
downloadphp-git-2e2bfb83c435c6ff2a4fd86c49703c0d130c01a4.tar.gz
fix for bug #31939
Diffstat (limited to 'ext')
-rw-r--r--ext/mysqli/tests/bug30967.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/bug30967.phpt b/ext/mysqli/tests/bug30967.phpt
index 67c1fc22d1..0a82d0d43c 100644
--- a/ext/mysqli/tests/bug30967.phpt
+++ b/ext/mysqli/tests/bug30967.phpt
@@ -12,7 +12,7 @@ Bug #30967 testcase (properties)
class mysql2 extends mysql1 {
}
- $mysql = new mysql2($host, "root", "", "test");
+ $mysql = new mysql2($host, $user, $passwd, "test");
$mysql->query("THIS DOES NOT WORK");
printf("%d\n", $mysql->errno);