From: Gunnar Wrobel Date: Tue, 2 Nov 2010 20:03:01 +0000 (+0100) Subject: Fix the way the base path is calculated. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=bf444c951539f83926f1aea4895596b97b8b1eee;p=horde.git Fix the way the base path is calculated. --- diff --git a/components/lib/Components/Helper/Root.php b/components/lib/Components/Helper/Root.php index 7a90c91bd..133dc1189 100644 --- a/components/lib/Components/Helper/Root.php +++ b/components/lib/Components/Helper/Root.php @@ -64,7 +64,7 @@ class Components_Helper_Root break; } } - $this->_base .= basename($current) . DIRECTORY_SEPARATOR; + $this->_base = basename($current) . DIRECTORY_SEPARATOR . $this->_base; $current = dirname($current); $i++; }