1
0
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:
David M
2007-05-23 23:37:04 +00:00
parent d180ac3d02
commit e4de958704
10 changed files with 42 additions and 17 deletions

View File

@@ -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'))