Add maintenance query to remove memid=0 emails #2

Merged
jandd merged 5 commits from fix-email-address-maintenance-bug-1543 into main 2024-05-20 10:34:40 +00:00
Showing only changes of commit 508226374a - Show all commits

View file

@ -302,9 +302,9 @@ class L10n {
$locale = self::$locales[$translation_code];
// set up locale
if ( !putenv("LANG=$locale") ) {
if ( !putenv("LANGUAGE=$locale") ) {
trigger_error("L10n::set_translation(): could not set the ".
"environment variable LANG to $locale", E_USER_WARNING);
"environment variable LANGUAGE to $locale", E_USER_WARNING);
return false;
}
if ( !setlocale(LC_ALL, $locale) ) {