According to the errata the following: $moFileName = str_replace('l10n.php', '.mo', $loaded_file);
should be changed into:
$moFileName = str_replace('l10n.php', 'mo', $loaded_file); (The change: .mo -> mo).
But now there is:
$moFileName = str_replace('.l10n.php', '.mo', $loaded_file); (Only the dot is added to 'l10n.php')
Symptoms:
It seems to resolve my previous issue, but I would like to ask if it is correct.
Questions:
Should I bother about the change in the code?
Is the current implementation of the errata correct?