From f0a5c7362138f577a043fc49edc5c75568190910 Mon Sep 17 00:00:00 2001 From: Cameron Date: Wed, 11 Feb 2015 22:46:20 -0800 Subject: [PATCH] Fixes #882 - White screen caused by "PHP Fatal error: Cannot redeclare utf8_to_unicode() " --- e107_handlers/e_parse_class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_handlers/e_parse_class.php b/e107_handlers/e_parse_class.php index 018665be3..62821d3d0 100644 --- a/e107_handlers/e_parse_class.php +++ b/e107_handlers/e_parse_class.php @@ -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'); } } // }