[open-ils-commits] r15678 - branches/rel_1_6_0/Open-ILS/web/opac/skin/default/js (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Mar 3 12:44:57 EST 2010
Author: miker
Date: 2010-03-03 12:44:54 -0500 (Wed, 03 Mar 2010)
New Revision: 15678
Modified:
branches/rel_1_6_0/Open-ILS/web/opac/skin/default/js/adv_global.js
Log:
backporting r15676: need to add a space here, in case the term contains a : (parser gets confused)
Modified: branches/rel_1_6_0/Open-ILS/web/opac/skin/default/js/adv_global.js
===================================================================
--- branches/rel_1_6_0/Open-ILS/web/opac/skin/default/js/adv_global.js 2010-03-03 17:44:39 UTC (rev 15677)
+++ branches/rel_1_6_0/Open-ILS/web/opac/skin/default/js/adv_global.js 2010-03-03 17:44:54 UTC (rev 15678)
@@ -311,7 +311,7 @@
string = string.replace(/\s*$/,'');
//searches[stype].term = string;
if(searches) searches += ' ';
- searches += stype + ':'+ string;
+ searches += stype + ': '+ string;
}
}
More information about the open-ils-commits
mailing list