mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-6196 minor related cleanup - should not be needed to backport it; merged from MOODLE_18_STABLE
This commit is contained in:
parent
684663f526
commit
e50916c80f
1 changed files with 6 additions and 2 deletions
|
@ -3403,7 +3403,11 @@ function email_to_user($user, $from, $subject, $messagetext, $messagehtml='', $a
|
|||
}
|
||||
}
|
||||
/// If it has changed, convert all the necessary strings
|
||||
if ($mail->CharSet != $charset) {
|
||||
$charset = strtolower($charset);
|
||||
$charsets = get_list_of_charsets();
|
||||
unset($charsets['UTF-8']);
|
||||
$charsets = array_map('strtolower', $charsets);
|
||||
if (in_array($charset, $charsets)) {
|
||||
/// Save the new mail charset
|
||||
$mail->CharSet = $charset;
|
||||
/// And convert some strings
|
||||
|
@ -4574,7 +4578,7 @@ function get_list_of_charsets() {
|
|||
'ISO-8859-1' => 'ISO-8859-1',
|
||||
'SHIFT-JIS' => 'SHIFT-JIS',
|
||||
'GB2312' => 'GB2312',
|
||||
'GB18030' => 'GB18030',
|
||||
'GB18030' => 'GB18030', // gb18030 not supported by typo and mbstring
|
||||
'UTF-8' => 'UTF-8');
|
||||
|
||||
asort($charsets);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue