georg           Mon Mar  3 17:50:34 2003 EDT

  Modified files:              
    /php4/ext/mysqli/tests      051.phpt 052.phpt 
  Log:
  disabled output of errormessages
  
  
Index: php4/ext/mysqli/tests/051.phpt
diff -u php4/ext/mysqli/tests/051.phpt:1.1 php4/ext/mysqli/tests/051.phpt:1.2
--- php4/ext/mysqli/tests/051.phpt:1.1  Mon Feb 17 18:29:58 2003
+++ php4/ext/mysqli/tests/051.phpt      Mon Mar  3 17:50:34 2003
@@ -13,7 +13,7 @@
        mysqli_execute($stmt1);
 
        mysqli_close($link);
-       mysqli_stmt_close($stmt1);
+       @mysqli_stmt_close($stmt1);
        printf("Ok\n");
 ?>
 --EXPECT--
Index: php4/ext/mysqli/tests/052.phpt
diff -u php4/ext/mysqli/tests/052.phpt:1.1 php4/ext/mysqli/tests/052.phpt:1.2
--- php4/ext/mysqli/tests/052.phpt:1.1  Mon Feb 17 18:29:58 2003
+++ php4/ext/mysqli/tests/052.phpt      Mon Mar  3 17:50:34 2003
@@ -12,8 +12,8 @@
        $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--



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to