From 9722a081683f2989ff5ff9fe8ba2b5e8c9f99f00 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 5 Dec 2006 19:13:20 +0000 Subject: [PATCH] =?UTF-8?q?fix=20for=20problem=20describt=20on=20the=20ger?= =?UTF-8?q?man=20list:=20headers=20from=20mails=20send=20from=20Outlook,?= =?UTF-8?q?=20eg:=20From:=20=3D=3FWindows-1250=3FQ=3FX=3DF6rg=5FBrd=3F=3D?= =?UTF-8?q?=20=20get=20not=20decoded=20correct=20-->=20php?= =?UTF-8?q?=20(at=20least=20some=20versions)=20seems=20not=20to=20understa?= =?UTF-8?q?nd=20the=20charset=20windows-1250,=20which=20is=20more=20or=20l?= =?UTF-8?q?ess=20identical=20to=20iso-8859-1?= --- phpgwapi/inc/class.translation.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpgwapi/inc/class.translation.inc.php b/phpgwapi/inc/class.translation.inc.php index 2149422c4e..ad906ed2f5 100644 --- a/phpgwapi/inc/class.translation.inc.php +++ b/phpgwapi/inc/class.translation.inc.php @@ -417,6 +417,7 @@ break; case 'us-ascii': case 'macroman': + case 'windows-1250': $from = 'iso-8859-1'; break; }