diff options
author | Georg Richter <georg@php.net> | 2005-02-25 08:42:31 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2005-02-25 08:42:31 +0000 |
commit | f2d80334369f0064414ae7e07b51d37cdb3aa48d (patch) | |
tree | c14cbba086e11efa7187ea5c8421419bf451b9de | |
parent | de74e9b0032364bdc87b2e276790ff71f51f80a8 (diff) | |
download | php-git-f2d80334369f0064414ae7e07b51d37cdb3aa48d.tar.gz |
fix for bug #31939
-rw-r--r-- | ext/mysqli/tests/bug30967.phpt | 2 |
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); |