summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_output_html.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-11-25 17:57:39 +0100
committerThomas Bruederli <thomas@roundcube.net>2012-11-25 17:57:39 +0100
commit5926684aab72265d243142010d9dfa8d642efdb9 (patch)
treee15eb289e3367465fa637338b39311892f71754e /program/lib/Roundcube/rcube_output_html.php
parent92964a4a6c40539ba100f71c3c5be35930be2867 (diff)
Unify path schema in global constants: paths always end with a /. Keep RCMAIL_CONFIG_DIR for backwards compatibility
Diffstat (limited to 'program/lib/Roundcube/rcube_output_html.php')
-rw-r--r--program/lib/Roundcube/rcube_output_html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_output_html.php b/program/lib/Roundcube/rcube_output_html.php
index f5c639707..0d51eaf06 100644
--- a/program/lib/Roundcube/rcube_output_html.php
+++ b/program/lib/Roundcube/rcube_output_html.php
@@ -1760,7 +1760,7 @@ class rcube_output_html extends rcube_output
'about.html',
);
foreach ($filenames as $file) {
- $fn = RCUBE_CONFIG_DIR . '/' . $file;
+ $fn = RCUBE_CONFIG_DIR . $file;
if (is_readable($fn)) {
$content = file_get_contents($fn);
$content = $this->parse_conditions($content);