From: Peter L. <pal...@gm...> - 2011-05-05 04:15:12
|
Dear All, None of the language strings were being read in from the language ini file. Instead, all strings were being displayed in all CAPITALS, which is the action taken if a string is not found in the language translation file. language.php version 314 fixes this problem. You should now see strings in upper and lower case, prepended with "j". I have tested this out only with en-GB.ini. Why this bug occurred I am not sure. Starting at line 452 of language.php, I have commented out the php version tests, and have run with just the function @parse_ini_file instead of the previously used function @parse_ini_string. Perhaps the str_replace function (line 454) messed up the contents of $strings so that it could not be properly parsed with @parse_ini_string. Peter |