diff options
author | alecpl <alec@alec.pl> | 2010-11-07 07:50:16 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-07 07:50:16 +0000 |
commit | cdf1ae0029172c27f8e66389786789d2834e04e4 (patch) | |
tree | 1e993615e8d2b691a731b7471c1c0a29eb912438 /program | |
parent | c0ed783aa1b3fcad7937a8b321756cf87cbe69d0 (diff) |
- Remove redundant directory separator
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_plugin.php b/program/include/rcube_plugin.php index 8ac874597..c7ec01943 100644 --- a/program/include/rcube_plugin.php +++ b/program/include/rcube_plugin.php @@ -75,7 +75,7 @@ abstract class rcube_plugin { $this->ID = get_class($this); $this->api = $api; - $this->home = $api->dir . DIRECTORY_SEPARATOR . $this->ID; + $this->home = $api->dir . $this->ID; $this->urlbase = $api->url . $this->ID . '/'; } |