Changeset 47124c22 in github for program/include/rcube_shared.inc
- Timestamp:
- Apr 12, 2008 9:54:45 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 3d35312
- Parents:
- b00bd0f2
- File:
-
- 1 edited
-
program/include/rcube_shared.inc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_shared.inc
r1b4d732 r47124c22 92 92 function rcube_label($attrib) 93 93 { 94 global $sess_user_lang, $ INSTALL_PATH, $OUTPUT;94 global $sess_user_lang, $OUTPUT; 95 95 static $sa_text_data, $s_language, $utf8_decode; 96 96 … … 112 112 113 113 // get english labels (these should be complete) 114 @include( $INSTALL_PATH.'program/localization/en_US/labels.inc');115 @include( $INSTALL_PATH.'program/localization/en_US/messages.inc');114 @include(INSTALL_PATH.'program/localization/en_US/labels.inc'); 115 @include(INSTALL_PATH.'program/localization/en_US/messages.inc'); 116 116 117 117 if (is_array($labels)) … … 121 121 122 122 // include user language files 123 if ($sess_user_lang!='en' && is_dir( $INSTALL_PATH.'program/localization/'.$sess_user_lang))123 if ($sess_user_lang!='en' && is_dir(INSTALL_PATH.'program/localization/'.$sess_user_lang)) 124 124 { 125 include_once( $INSTALL_PATH.'program/localization/'.$sess_user_lang.'/labels.inc');126 include_once( $INSTALL_PATH.'program/localization/'.$sess_user_lang.'/messages.inc');125 include_once(INSTALL_PATH.'program/localization/'.$sess_user_lang.'/labels.inc'); 126 include_once(INSTALL_PATH.'program/localization/'.$sess_user_lang.'/messages.inc'); 127 127 128 128 if (is_array($labels))
Note: See TracChangeset
for help on using the changeset viewer.
