From 915dd1910fce45ead864324d48cd0f8db791ca74 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 6 Dec 2006 07:21:45 +0000 Subject: [PATCH] fixing the fix ;-) According to wikipedia windows-1250 is similar to iso-8859-2 - thought German special chars (umlauts) have the same encoding in iso-8859-1 --- phpgwapi/inc/class.translation.inc.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.translation.inc.php b/phpgwapi/inc/class.translation.inc.php index f4892eb6e2..0f095d19cd 100644 --- a/phpgwapi/inc/class.translation.inc.php +++ b/phpgwapi/inc/class.translation.inc.php @@ -417,9 +417,11 @@ break; case 'us-ascii': case 'macroman': - case 'windows-1250': $from = 'iso-8859-1'; break; + case 'windows-1250': + $from = 'iso-8859-2'; + break; } if (!$to) {