mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
handle Greek windows-1253 encoding as iso-8859-7
This commit is contained in:
parent
f71b9ba093
commit
5f65cecda5
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user