[open-ils-commits] r15677 - branches/rel_1_6/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:42 EST 2010


Author: miker
Date: 2010-03-03 12:44:39 -0500 (Wed, 03 Mar 2010)
New Revision: 15677

Modified:
   branches/rel_1_6/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/Open-ILS/web/opac/skin/default/js/adv_global.js
===================================================================
--- branches/rel_1_6/Open-ILS/web/opac/skin/default/js/adv_global.js	2010-03-03 17:43:20 UTC (rev 15676)
+++ branches/rel_1_6/Open-ILS/web/opac/skin/default/js/adv_global.js	2010-03-03 17:44:39 UTC (rev 15677)
@@ -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