diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:57:39 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:57:39 +0100 |
commit | 5926684aab72265d243142010d9dfa8d642efdb9 (patch) | |
tree | e15eb289e3367465fa637338b39311892f71754e /program/lib/Roundcube/rcube_output_html.php | |
parent | 92964a4a6c40539ba100f71c3c5be35930be2867 (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.php | 2 |
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); |