config파일 읽을 때 BOM문자 제거

xpressengine/xe-core#1604
This commit is contained in:
Kijin Sung 2017-11-30 21:53:23 +09:00
parent f4c19a3e0f
commit d7beeb783c
2 changed files with 6 additions and 0 deletions

View file

@ -30,7 +30,9 @@ class Config
{
if (file_exists(\RX_BASEDIR . self::$config_filename))
{
ob_start();
self::$_config = (include \RX_BASEDIR . self::$config_filename);
ob_end_clean();
}
else
{