From b7a992856e599d04361fc551b782cab3fa6c20b8 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 6 Dec 2006 07:22:59 +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 ad906ed2f5..7a6d659f71 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) {