handle Greek windows-1253 encoding as iso-8859-7

This commit is contained in:
Ralf Becker 2019-02-27 09:37:50 +01:00
parent f71b9ba093
commit 5f65cecda5

View File

@ -8,7 +8,6 @@
* Copyright (C) 2000, 2001 Joseph Engo
* @license http://opensource.org/licenses/lgpl-license.php LGPL - GNU Lesser General Public License
* @package api
* @version $Id$
*/
namespace EGroupware\Api;
@ -901,6 +900,9 @@ class Translation
case 'windows-1250':
$from = 'iso-8859-2';
break;
case 'windows-1253':
$from = 'iso-8859-7';
break;
case 'windows-1257':
$from = 'iso-8859-13';
break;