diff options
Diffstat (limited to 'ext')
| -rwxr-xr-x | ext/sqlite/tests/bug28112.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite/tests/bug28112.phpt b/ext/sqlite/tests/bug28112.phpt index 551e61764e..05c8ff81f3 100755 --- a/ext/sqlite/tests/bug28112.phpt +++ b/ext/sqlite/tests/bug28112.phpt @@ -1,11 +1,11 @@ --TEST-- -#28112 (sqlite_query() crashing apache on malformed query) +Bug #28112 (sqlite_query() crashing apache on malformed query) --FILE-- <?php if (!($db = sqlite_open(":memory:", 666, $error))) die ("Couldn't open the database"); sqlite_query($db, "create table frob (foo INTEGER PRIMARY KEY, bar text);"); -$res = sqlite_array_query($db, ""); +$res = @sqlite_array_query($db, ""); ?> ===DONE=== |
