From 52428795456305215ead2f1756b77a9891030e59 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Paul=20H=C3=A4nsch?= Date: Fri, 1 Dec 2023 17:41:13 +0100 Subject: [PATCH] bugfix _BASE url --- index.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.cgi b/index.cgi index 4794146..ebdaf53 100755 --- a/index.cgi +++ b/index.cgi @@ -58,7 +58,7 @@ fi >&2 debug "TID mismatch updating $file" fi if [ $(POST action) = update_invoice_return ]; then - REDIRECT "${_BASE}" + REDIRECT "${_BASE}/" else REDIRECT "${_BASE}$PATH_INFO" fi @@ -83,7 +83,7 @@ fi >&2 REDIRECT "${_BASE}/pdf/${id}/$(URL "${filenamestring}.pdf")" ;; *) - REDIRECT "${_BASE}" + REDIRECT "${_BASE}/" ;; esac @@ -96,7 +96,7 @@ esac ;; /doc/*) id="${PATH_INFO##*/}" tid="$(transid "${_DATA}/${id}.kvd")" - DB3 open "${_DATA}/${id}.kvd" || REDIRECT "${_BASE}" + DB3 open "${_DATA}/${id}.kvd" || REDIRECT "${_BASE}/" type="$(DB3 get type)" [ -d "${_EXEC}/${type}/" ] \ && . "${_EXEC}/${type}/form.sh" @@ -106,6 +106,6 @@ esac id="${PATH_INFO#/pdf/}" id="${id%%/*}" FILE "$_DATA/export/${id}.pdf" ;; - *) REDIRECT "${_BASE}" + *) REDIRECT "${_BASE}/" ;; esac -- 2.39.5