header에 HTTP/1.1 추가

apache 2.4/php 5.3 환경에서 오류 발생함으로 추가
This commit is contained in:
YJSoft 2013-11-28 03:02:19 +09:00
parent 25ae16e15b
commit b85762743d

View file

@ -227,7 +227,7 @@ class Context
define('_XE_SITELOCK_TITLE_', $title);
define('_XE_SITELOCK_MESSAGE_', $message);
header('403 Forbidden');
header("HTTP/1.1 403 Forbidden");
include _XE_PATH_ . 'common/tpl/sitelock.html';
exit;
}