From 1888124b09b8fc1f3a944e1efeeaf1837f348376 Mon Sep 17 00:00:00 2001 From: Jeff Davis Date: Fri, 5 Apr 2019 11:08:55 -0700 Subject: [PATCH] LP#1823387: avoid double slashes in booking URLs, which will not work with recent versions of Apache Signed-off-by: Jeff Davis Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- Open-ILS/web/js/ui/default/staff/booking/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/booking/app.js b/Open-ILS/web/js/ui/default/staff/booking/app.js index 5f116d1461..8b92d2769a 100644 --- a/Open-ILS/web/js/ui/default/staff/booking/app.js +++ b/Open-ILS/web/js/ui/default/staff/booking/app.js @@ -32,7 +32,7 @@ function($scope , $routeParams , $location , egCore) { ses : egCore.auth.token(), } - var booking_path = '/eg//eg/' + + var booking_path = '/eg/' + $routeParams.noun + '/' + $routeParams.verb + location.search; // embed URL must include protocol/domain or it will be loaded via -- 2.43.2