From 84556805c3fa543e9670cfe967c39a510e38e61d Mon Sep 17 00:00:00 2001 From: indiri69 Date: Mon, 11 Mar 2002 19:11:09 +0000 Subject: [PATCH] Fix a typo and the right code for capital S with caron git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2568 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/i18n.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/i18n.php b/functions/i18n.php index d533588c..1cbb8d05 100644 --- a/functions/i18n.php +++ b/functions/i18n.php @@ -466,7 +466,7 @@ function charset_decode_iso_8859_15 ($string) { // Euro sign $string = str_replace ("\244", '€', $string); // Latin capital letter S with caron - $string = str_replace ("\244", 'Š', $string); + $string = str_replace ("\246", 'Š', $string); // Latin small letter s with caron $string = str_replace ("\250", 'š', $string); // Latin capital letter Z with caron @@ -483,7 +483,7 @@ function charset_decode_iso_8859_15 ($string) { return (charset_decode_iso_8859_1($string)); } -/* ISO-8859-15 is Cyrillic */ +/* ISO-8859-5 is Cyrillic */ function charset_decode_iso_8859_5 ($string) { // Convert to KOI8-R, then return this decoded. $string = convert_cyr_string($string, 'i', 'k'); -- 2.25.1