diff --git a/package.json b/package.json index c16a50366..8dcea3f99 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,8 @@ "name": "RainLoop", "title": "RainLoop Webmail", "version": "1.10.0", - "release": "103", + "release": "107", + "ownCloudPackageVersion": "4.16", "description": "Simple, modern & fast web-based email client", "homepage": "http://rainloop.net", "main": "gulpfile.js", @@ -41,7 +42,6 @@ "plugins" ], "readmeFilename": "README.md", - "ownCloudPackageVersion": "4.15", "engines": { "node": ">= 0.10.0" }, diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php index 9c5eb6863..75960df59 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php @@ -8339,7 +8339,7 @@ NewThemeLink IncludeCss LoadingDescriptionEsc TemplatesLink LangLink IncludeBack { $this->Http()->StatusHeader(304); $this->cacheByKey($sKey); - exit(); + exit(0); } } } diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Service.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Service.php index d27dac8fa..7ddfae8c7 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Service.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Service.php @@ -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(); diff --git a/rainloop/v/0.0.0/include.php b/rainloop/v/0.0.0/include.php index c33adf6fc..56e0d2646 100644 --- a/rainloop/v/0.0.0/include.php +++ b/rainloop/v/0.0.0/include.php @@ -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);