From: miker Date: Wed, 3 Mar 2010 17:44:39 +0000 (+0000) Subject: backporting r15676: need to add a space here, in case the term contains a : (parser... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f6f5d8515ad8767381a4a1072fd9ccdedc45715f;p=working%2FEvergreen.git backporting r15676: need to add a space here, in case the term contains a : (parser gets confused) git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6@15677 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; } }