1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-29 10:38:08 +01:00

Fixes #882 - White screen caused by "PHP Fatal error: Cannot redeclare utf8_to_unicode() "

This commit is contained in:
Cameron 2015-02-11 22:46:20 -08:00
parent d0222ab346
commit f0a5c73621

View File

@ -299,9 +299,9 @@ class e_parse extends e_parser
{
// Must use emulation - will probably be slow!
$this->utfAction = 2;
require (E_UTF8_PACK.'utils/unicode.php');
require_once(E_UTF8_PACK.'utils/unicode.php');
// Always load the core routines - bound to need some of them!
require (E_UTF8_PACK.'native/core.php');
require_once(E_UTF8_PACK.'native/core.php');
}
}
// }