diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-22 13:13:59 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-22 13:13:59 +0100 |
commit | 0bccdbc959b0b7bbce2ebdd62b6b44121e1e0b61 (patch) | |
tree | 51cec26386142e34a65d46d290fd22e5b520cafb /core | |
parent | e3013a99ef5e9c44ef4f0661a2fb450f89df8d05 (diff) | |
parent | a0b383c5e87a873d14ce7a3f16f3161ac2aeae5a (diff) | |
download | nextcloud-server-0bccdbc959b0b7bbce2ebdd62b6b44121e1e0b61.tar.gz nextcloud-server-0bccdbc959b0b7bbce2ebdd62b6b44121e1e0b61.zip |
Merge pull request #21849 from owncloud/add-custom-marker-into-htaccess
Add custom marker into htaccess and execute integrity check after installation
Diffstat (limited to 'core')
-rw-r--r-- | core/controller/setupcontroller.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/controller/setupcontroller.php b/core/controller/setupcontroller.php index 16646b97ae6..f25c6f39a0b 100644 --- a/core/controller/setupcontroller.php +++ b/core/controller/setupcontroller.php @@ -99,6 +99,7 @@ class SetupController { if( file_exists( $this->autoConfigFile )) { unlink($this->autoConfigFile); } + \OC::$server->getIntegrityCodeChecker()->runInstanceVerification(); \OC_Util::redirectToDefaultPage(); } |