summaryrefslogtreecommitdiff
path: root/ext/interbase/tests/bug45373.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/interbase/tests/bug45373.phpt')
-rw-r--r--ext/interbase/tests/bug45373.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/interbase/tests/bug45373.phpt b/ext/interbase/tests/bug45373.phpt
index b83bf214e2..57ac126d07 100644
--- a/ext/interbase/tests/bug45373.phpt
+++ b/ext/interbase/tests/bug45373.phpt
@@ -6,7 +6,7 @@ Bug #45373 (php crash on query with errors in params)
<?php
require("interbase.inc");
-
+
$db = ibase_connect($test_base);
@@ -16,11 +16,11 @@ Bug #45373 (php crash on query with errors in params)
$r = ibase_execute($q, 1, 'test table not created with isql');
var_dump(ibase_fetch_assoc($r));
ibase_free_result($r);
-
+
$r = ibase_execute($q, 1, 'test table not created with isql', 1);
var_dump(ibase_fetch_assoc($r));
ibase_free_result($r);
-
+
$r = ibase_execute($q, 1);
var_dump(ibase_fetch_assoc($r));