commit 1ac0c8e9a3295f1539438fd9df8746078e15df7f
parent 3d6aa4b6abaa707d9081ebe4a0419551d8ace33a
Author: Dan Stillman <dstillman@zotero.org>
Date: Sat, 26 Aug 2006 08:54:31 +0000
Debug message fix in DB.rollbackTransaction()
Diffstat:
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
@@ -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);
}
}
}