diff --git a/lib/base.php b/lib/base.php index 9fc7d0dae8f57d19ba19bc51f01e1669a2fbde8a..2052be68255519e2b21829340a8f3fd1e68fd7ce 100644 --- a/lib/base.php +++ b/lib/base.php @@ -381,13 +381,11 @@ class OC{ $server=OC_Helper::serverHost(); $serverhost=parse_url($server); if(isset($serverhost['host'])) $serverhost=$serverhost['host']; else $serverhost=''; - if(!self::$CLI){ - if(($_SERVER['REQUEST_METHOD']=='POST') and ($refererhost<>$serverhost)) { - $url = OC_Helper::serverProtocol().'://'.$server.OC::$WEBROOT.'/index.php'; - header("Location: $url"); - exit(); - } - } + if(($_SERVER['REQUEST_METHOD']=='POST') and ($refererhost<>$serverhost)) { + $url = OC_Helper::serverProtocol().'://'.$server.OC::$WEBROOT.'/index.php'; + header("Location: $url"); + exit(); + } self::initSession(); self::initTemplateEngine();