-
Bug
-
Resolution: Fixed
-
3.0.RC1
-
None
-
PHP Environment: 4.4.4
Database: 4.1.21
when i convert form phpBB2.X in Hebrew with iso-8859-8-i encoding to phpBB3.RC2cvs there is en error:
Unknown encoding: iso-8859-8
this is in the phpBB 3.0.RC2cvs
in the file: includes/utf/utf_tools.php you added the lines:
// convert iso-8859-8-i to iso-8859-8
|
else if ($encoding == 'iso-8859-8-i')
|
{
|
$encoding = 'iso-8859-8';
|
$string = hebrev($string);
|
}
|
but nothing is done with the iso-8859-8 encoding after that.

