mirror of
https://github.com/e107inc/e107.git
synced 2025-08-05 06:07:32 +02:00
Fixes #882 - White screen caused by "PHP Fatal error: Cannot redeclare utf8_to_unicode() "
This commit is contained in:
@@ -299,9 +299,9 @@ class e_parse extends e_parser
|
|||||||
{
|
{
|
||||||
// Must use emulation - will probably be slow!
|
// Must use emulation - will probably be slow!
|
||||||
$this->utfAction = 2;
|
$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!
|
// 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');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// }
|
// }
|
||||||
|
Reference in New Issue
Block a user