From: Lebbeous Fogle-Weekley Date: Mon, 3 Oct 2011 19:00:05 +0000 (-0400) Subject: Two generated links in serials interfaces led to 404s X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e4f44c370783b0c7cef3770ac40ae33f570ce663;p=working%2FEvergreen.git Two generated links in serials interfaces led to 404s And now they do not. Signed-off-by: Lebbeous Fogle-Weekley --- diff --git a/Open-ILS/web/js/ui/default/serial/list_item.js b/Open-ILS/web/js/ui/default/serial/list_item.js index 8455c82d86..c4c7654616 100644 --- a/Open-ILS/web/js/ui/default/serial/list_item.js +++ b/Open-ILS/web/js/ui/default/serial/list_item.js @@ -28,7 +28,7 @@ function load_siss_display() { var link = dojo.byId("siss_label_here"); link.onclick = function() { location.href = oilsBasePath + - "/eg/serial/subscription?id=" + + "/serial/subscription?id=" + r.subscription() + "&tab=issuances"; } link.innerHTML = r.label(); diff --git a/Open-ILS/web/js/ui/default/serial/list_stream.js b/Open-ILS/web/js/ui/default/serial/list_stream.js index 403b317120..79bf05d259 100644 --- a/Open-ILS/web/js/ui/default/serial/list_stream.js +++ b/Open-ILS/web/js/ui/default/serial/list_stream.js @@ -36,7 +36,7 @@ function load_sdist_display() { var link = dojo.byId("sdist_label_here"); link.onclick = function() { location.href = oilsBasePath + - "/eg/serial/subscription?id=" + + "/serial/subscription?id=" + r.subscription() + "&tab=distributions"; } link.innerHTML = r.label();