pre release commit

This commit is contained in:
RainLoop Team 2016-05-15 00:43:01 +03:00
parent 1c69894c97
commit 4ee2090e6c
4 changed files with 5 additions and 4 deletions

View file

@ -8339,7 +8339,7 @@ NewThemeLink IncludeCss LoadingDescriptionEsc TemplatesLink LangLink IncludeBack
{
$this->Http()->StatusHeader(304);
$this->cacheByKey($sKey);
exit();
exit(0);
}
}
}

View file

@ -50,7 +50,7 @@ class Service
if ($this->oActions->Config()->Get('labs', 'force_https', false) && !$this->oHttp->IsSecure())
{
@\header('Location: https://'.$this->oHttp->GetHost(false, false).$this->oHttp->GetUrl(), true);
exit();
exit(0);
}
$this->localHandle();

View file

@ -147,6 +147,7 @@
define('APP_INSTALLED_VERSION', $sInstalled);
@file_put_contents(APP_DATA_FOLDER_PATH.'INSTALLED', APP_VERSION);
@file_put_contents(APP_DATA_FOLDER_PATH.'VERSION', APP_VERSION);
@file_put_contents(APP_DATA_FOLDER_PATH.'index.html', 'Forbidden');
@file_put_contents(APP_DATA_FOLDER_PATH.'index.php', 'Forbidden');
@file_put_contents(APP_DATA_FOLDER_PATH.'.htaccess', APP_DEFAULT_DENY_ALL_HTACCESS);