From 378993782b1701558fd311d87d27c1d79fc33120 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 6 Jul 2021 18:15:00 +0200 Subject: [PATCH] do not create relative link --- inc/inc.ClassViewCommon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/inc.ClassViewCommon.php b/inc/inc.ClassViewCommon.php index 1f8c5f764..521eaeda3 100644 --- a/inc/inc.ClassViewCommon.php +++ b/inc/inc.ClassViewCommon.php @@ -289,7 +289,7 @@ class SeedDMS_View_Common { * @return string $url */ protected function html_url($view='', $urlparams) { /* {{{ */ - $url = "../out/out.".$view.".php"; + $url = $this->params['settings']->_httpRoot."out/out.".$view.".php"; if($urlparams) $url .= "?".http_build_query($urlparams); return $url;