From 1ac0c8e9a3295f1539438fd9df8746078e15df7f Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 26 Aug 2006 08:54:31 +0000 Subject: [PATCH] Debug message fix in DB.rollbackTransaction() --- chrome/chromeFiles/content/scholar/xpcom/db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/chromeFiles/content/scholar/xpcom/db.js b/chrome/chromeFiles/content/scholar/xpcom/db.js index 393f13ca7e..6741b8733f 100644 --- a/chrome/chromeFiles/content/scholar/xpcom/db.js +++ b/chrome/chromeFiles/content/scholar/xpcom/db.js @@ -294,7 +294,7 @@ Scholar.DB = new function(){ catch(e){ var dberr = (db.lastErrorString!='not an error') ? ' [ERROR: ' + db.lastErrorString + ']' : ''; - throw(e + ' [QUERY: ' + sql + ']' + dberr); + throw(e + dberr); } } }