From b12f2c4f5bd6f23efc8a2448a99cc57d34048bc9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Wed, 17 Jun 1998 15:01:36 +0200
Subject: [PATCH] Fixed bug in big_query().

Rev: lib/modules/Sql.pmod/sql.pike:1.23
---
 lib/modules/Sql.pmod/sql.pike | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/lib/modules/Sql.pmod/sql.pike b/lib/modules/Sql.pmod/sql.pike
index cfb8a1182c..cde990e4d9 100644
--- a/lib/modules/Sql.pmod/sql.pike
+++ b/lib/modules/Sql.pmod/sql.pike
@@ -1,5 +1,5 @@
 /*
- * $Id: sql.pike,v 1.22 1998/06/17 12:58:34 grubba Exp $
+ * $Id: sql.pike,v 1.23 1998/06/17 13:01:36 grubba Exp $
  *
  * Implements the generic parts of the SQL-interface
  *
@@ -8,7 +8,7 @@
 
 //.
 //. File:	sql.pike
-//. RCSID:	$Id: sql.pike,v 1.22 1998/06/17 12:58:34 grubba Exp $
+//. RCSID:	$Id: sql.pike,v 1.23 1998/06/17 13:01:36 grubba Exp $
 //. Author:	Henrik Grubbström (grubba@idonex.se)
 //.
 //. Synopsis:	Implements the generic parts of the SQL-interface.
@@ -320,8 +320,7 @@ object big_query(object|string q, mapping(string|int:mixed)|void bindings)
     } else {
       pre_res = master_sql->big_query(q);
     }
-  }
-  if (bindings) {
+  } else if (bindings) {
     pre_res = master_sql->query(q, bindings);
   } else {
     pre_res = master_sql->query(q);
-- 
GitLab