diff options
author | Georg Richter <georg@php.net> | 2003-03-03 22:50:34 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2003-03-03 22:50:34 +0000 |
commit | 359d21aa54ad116d3c2a3b9b8aa9fbaa3b322753 (patch) | |
tree | 048511200a9012b06549317301f3d4eac6ee8bd9 | |
parent | 281960ee78b9c3c1972f504ba6a195e408470f9d (diff) | |
download | php-git-359d21aa54ad116d3c2a3b9b8aa9fbaa3b322753.tar.gz |
disabled output of errormessages
-rw-r--r-- | ext/mysqli/tests/051.phpt | 2 | ||||
-rw-r--r-- | ext/mysqli/tests/052.phpt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/mysqli/tests/051.phpt b/ext/mysqli/tests/051.phpt index 746597e925..dde734a1e0 100644 --- a/ext/mysqli/tests/051.phpt +++ b/ext/mysqli/tests/051.phpt @@ -13,7 +13,7 @@ free statement after close mysqli_execute($stmt1); mysqli_close($link); - mysqli_stmt_close($stmt1); + @mysqli_stmt_close($stmt1); printf("Ok\n"); ?> --EXPECT-- diff --git a/ext/mysqli/tests/052.phpt b/ext/mysqli/tests/052.phpt index 5682478887..4ae9b12c50 100644 --- a/ext/mysqli/tests/052.phpt +++ b/ext/mysqli/tests/052.phpt @@ -12,8 +12,8 @@ call statement after close $stmt2 = mysqli_prepare($link, "SELECT CURRENT_USER()"); mysqli_close($link); - mysqli_execute($stmt2); - mysqli_stmt_close($stmt2); + @mysqli_execute($stmt2); + @mysqli_stmt_close($stmt2); printf("Ok\n"); ?> --EXPECT-- |