From: miker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Wed, 3 Mar 2010 17:43:20 +0000 (+0000)
Subject: need to add a space here, in case the term contains a : (parser gets confused)
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=99ddaabfa0e393ba59ec3ed8e77e8bf4d6f174a4;p=contrib%2FConifer.git

need to add a space here, in case the term contains a : (parser gets confused)

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15676 dcc99617-32d9-48b4-a31d-7c20da2025e4
---

diff --git a/Open-ILS/web/opac/skin/default/js/adv_global.js b/Open-ILS/web/opac/skin/default/js/adv_global.js
index 2077845601..74edd3fe61 100644
--- a/Open-ILS/web/opac/skin/default/js/adv_global.js
+++ b/Open-ILS/web/opac/skin/default/js/adv_global.js
@@ -311,7 +311,7 @@ function advBuildSearchBlob() {
             string = string.replace(/\s*$/,'');
 			//searches[stype].term = string;
             if(searches) searches += ' ';
-            searches += stype + ':'+ string;
+            searches += stype + ': '+ string;
 		}
 	}