From 20ebe749138ea05367bb4def1be2323338de0c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Mon, 9 Apr 2007 01:24:34 +0000 Subject: [PATCH] Use absolute path in application::objectMakeUrl(), otherwise mail links won't work --- include/application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/application.php b/include/application.php index 111f3f6..0c053b7 100644 --- a/include/application.php +++ b/include/application.php @@ -826,7 +826,7 @@ class Application { function objectMakeUrl() { - $sUrl = BASE."appview.php?iAppId=$this->iAppId"; + $sUrl = APPDB_ROOT."appview.php?iAppId=$this->iAppId"; return $sUrl; }