From e4f44c370783b0c7cef3770ac40ae33f570ce663 Mon Sep 17 00:00:00 2001 From: Lebbeous Fogle-Weekley Date: Mon, 3 Oct 2011 15:00:05 -0400 Subject: [PATCH] Two generated links in serials interfaces led to 404s And now they do not. Signed-off-by: Lebbeous Fogle-Weekley --- Open-ILS/web/js/ui/default/serial/list_item.js | 2 +- Open-ILS/web/js/ui/default/serial/list_stream.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(); -- 2.11.0