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_csv2vcard.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_csv2vcard.php')
-rw-r--r-- | program/lib/Roundcube/rcube_csv2vcard.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube_csv2vcard.php b/program/lib/Roundcube/rcube_csv2vcard.php index 114d36d85..ec7a3ab41 100644 --- a/program/lib/Roundcube/rcube_csv2vcard.php +++ b/program/lib/Roundcube/rcube_csv2vcard.php @@ -244,8 +244,8 @@ class rcube_csv2vcard { // Localize fields map if ($lang && $lang != 'en_US') { - if (file_exists(INSTALL_PATH . "program/localization/$lang/csv2vcard.inc")) { - include INSTALL_PATH . "program/localization/$lang/csv2vcard.inc"; + if (file_exists(RCUBE_LOCALIZATION_DIR . "$lang/csv2vcard.inc")) { + include RCUBE_LOCALIZATION_DIR . "$lang/csv2vcard.inc"; } if (!empty($map)) { |