From: Chuck Hagenbuch Date: Sun, 21 Dec 2008 19:24:27 +0000 (-0500) Subject: prefix current url with / X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ec73d7da9050691f2925924296eb62193eb691c2;p=horde.git prefix current url with / --- diff --git a/framework/Controller/lib/Horde/Controller/Base.php b/framework/Controller/lib/Horde/Controller/Base.php index 300216f08..dc6b51cf0 100644 --- a/framework/Controller/lib/Horde/Controller/Base.php +++ b/framework/Controller/lib/Horde/Controller/Base.php @@ -323,7 +323,7 @@ abstract class Horde_Controller_Base protected function renderAction($name) { // current url - $this->_view->currentUrl = $this->_request->getUri(); + $this->_view->currentUrl = '/' . $this->_request->getUri(); // copy instance variables foreach (get_object_vars($this) as $key => $value) {