|
@@ -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');
|