From: erickson Date: Thu, 18 Sep 2008 12:50:56 +0000 (+0000) Subject: replace - with spaces in ISSN search X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7ff55c2abdfdc555ae68e4f33e0676db0d6b60f8;p=Evergreen.git replace - with spaces in ISSN search git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2@10631 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/opac/skin/default/js/rresult.js b/Open-ILS/web/opac/skin/default/js/rresult.js index 39b7301e23..bb02135aa0 100644 --- a/Open-ILS/web/opac/skin/default/js/rresult.js +++ b/Open-ILS/web/opac/skin/default/js/rresult.js @@ -184,7 +184,7 @@ function rresultCollectTCNIds() { } function rresultCollectISSNIds() { - var req = new Request(FETCH_ADV_ISSN_RIDS, getAdvTerm() ); + var req = new Request(FETCH_ADV_ISSN_RIDS, (getAdvTerm()+'').replace(/-/g,' ')); req.callback( function(r) { var blob = r.getResultObject();