projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5e0dc28
)
Fix the way the base path is calculated.
author
Gunnar Wrobel
<p@rdus.de>
Tue, 2 Nov 2010 20:03:01 +0000
(21:03 +0100)
committer
Gunnar Wrobel
<p@rdus.de>
Tue, 2 Nov 2010 20:54:12 +0000
(21:54 +0100)
components/lib/Components/Helper/Root.php
patch
|
blob
|
history
diff --git
a/components/lib/Components/Helper/Root.php
b/components/lib/Components/Helper/Root.php
index
7a90c91
..
133dc11
100644
(file)
--- 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++;
}