diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-08-28 19:24:03 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-08-28 19:24:03 +0200 |
commit | 29c24e647cb4c4a0928382a9ab2964980898562b (patch) | |
tree | 72d802a41d7acee8797c4c8f7318c7ceaa24ce5e /program/lib/Roundcube/bootstrap.php | |
parent | a98a4f8bb56eacffff1765ff09dd29af26e5fc12 (diff) |
Get rid of DIRECTORY_SEPARATOR for consistency
Diffstat (limited to 'program/lib/Roundcube/bootstrap.php')
-rw-r--r-- | program/lib/Roundcube/bootstrap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/bootstrap.php b/program/lib/Roundcube/bootstrap.php index 0aa5cb1de..98bbce5d4 100644 --- a/program/lib/Roundcube/bootstrap.php +++ b/program/lib/Roundcube/bootstrap.php @@ -58,7 +58,7 @@ define('RCUBE_VERSION', '1.1-git'); define('RCUBE_CHARSET', 'UTF-8'); if (!defined('RCUBE_LIB_DIR')) { - define('RCUBE_LIB_DIR', dirname(__FILE__).DIRECTORY_SEPARATOR); + define('RCUBE_LIB_DIR', dirname(__FILE__) . '/'); } if (!defined('RCUBE_INSTALL_PATH')) { |