diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:35:53 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:35:53 +0100 |
commit | 9be2f43d02cd54340fc64c9b2cee9cfa94b49034 (patch) | |
tree | 6972efcd24b6ac12643a93ae19fbcab5411938fd /program/lib/Roundcube/rcube_plugin_api.php | |
parent | 5352b55779aadc8b4c665daf69c7a27767f17d78 (diff) |
Define more (uniquely prefixed) constants for Roundcube directories in order to enhance the interoperability of the Roundcube framework
Diffstat (limited to 'program/lib/Roundcube/rcube_plugin_api.php')
-rw-r--r-- | program/lib/Roundcube/rcube_plugin_api.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/lib/Roundcube/rcube_plugin_api.php b/program/lib/Roundcube/rcube_plugin_api.php index 51daf2797..a8f83a2b6 100644 --- a/program/lib/Roundcube/rcube_plugin_api.php +++ b/program/lib/Roundcube/rcube_plugin_api.php @@ -20,8 +20,8 @@ */ // location where plugins are loade from -if (!defined('RCMAIL_PLUGINS_DIR')) - define('RCMAIL_PLUGINS_DIR', INSTALL_PATH . 'plugins/'); +if (!defined('RCUBE_PLUGINS_DIR')) + define('RCUBE_PLUGINS_DIR', RCUBE_INSTALL_PATH . 'plugins/'); /** @@ -101,7 +101,7 @@ class rcube_plugin_api */ protected function __construct() { - $this->dir = slashify(RCMAIL_PLUGINS_DIR); + $this->dir = slashify(RCUBE_PLUGINS_DIR); } |