]> granicus.if.org Git - php/commitdiff
better skip condition.
authorIlia Alshanetsky <iliaa@php.net>
Sun, 16 Feb 2003 15:47:22 +0000 (15:47 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Sun, 16 Feb 2003 15:47:22 +0000 (15:47 +0000)
ext/mysqli/tests/014.phpt

index 7e1771fcaa1ae00ee0da8edc7bfb1da5b47cfb9c..8a72c42c7fe13c78eec9d4bce5d5f450cfb152f2 100644 (file)
@@ -9,8 +9,8 @@ mysqli autocommit/commit/rollback
        mysqli_free_result($result);
        mysqli_close($link);
        
-       if ($row[1] == "DISABLED") {
-               printf ("skip innodb support not installed.");
+       if ($row[1] == "DISABLED" || $row[1] == "NO") {
+               printf ("skip innodb support is not installed or enabled.");
        }
 ?>
 --FILE--