mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
- Handle ISO-8859-8-i
- Renamed two indicies for Oracle support #11457 git-svn-id: file:///svn/phpbb/trunk@7669 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -713,6 +713,12 @@ function utf8_recode($string, $encoding)
|
||||
{
|
||||
$encoding = 'cp1252';
|
||||
}
|
||||
// convert iso-8859-8-i to iso-8859-8
|
||||
else if ($encoding == 'iso-8859-8-i')
|
||||
{
|
||||
$encoding = 'iso-8859-8';
|
||||
$string = strrev($string);
|
||||
}
|
||||
|
||||
// First, try iconv()
|
||||
if (function_exists('iconv'))
|
||||
|
Reference in New Issue
Block a user