diff options
-rw-r--r-- | ext/mysqli/tests/mysqli_stmt_get_result_non_select.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/tests/mysqli_stmt_get_result_non_select.phpt b/ext/mysqli/tests/mysqli_stmt_get_result_non_select.phpt index 658f7da77f..1cd2981ed2 100644 --- a/ext/mysqli/tests/mysqli_stmt_get_result_non_select.phpt +++ b/ext/mysqli/tests/mysqli_stmt_get_result_non_select.phpt @@ -38,7 +38,7 @@ if (!function_exists('mysqli_stmt_get_result')) $found = false; foreach ($engines as $k => $engine) foreach ($engine as $k => $v) - if (stristr('MyISAM', $v)) { + if (stristr($v, 'MyISAM')) { $found = true; break; } @@ -92,4 +92,4 @@ if (!function_exists('mysqli_stmt_get_result')) require_once("clean_table.inc"); ?> --EXPECT-- -done!
\ No newline at end of file +done! |