[open-ils-commits] r15676 - trunk/Open-ILS/web/opac/skin/default/js (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Mar 3 12:43:24 EST 2010


Author: miker
Date: 2010-03-03 12:43:20 -0500 (Wed, 03 Mar 2010)
New Revision: 15676

Modified:
   trunk/Open-ILS/web/opac/skin/default/js/adv_global.js
Log:
need to add a space here, in case the term contains a : (parser gets confused)

Modified: trunk/Open-ILS/web/opac/skin/default/js/adv_global.js
===================================================================
--- trunk/Open-ILS/web/opac/skin/default/js/adv_global.js	2010-03-03 16:41:38 UTC (rev 15675)
+++ trunk/Open-ILS/web/opac/skin/default/js/adv_global.js	2010-03-03 17:43:20 UTC (rev 15676)
@@ -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