summaryrefslogtreecommitdiffstats
path: root/appinfo/setup.php
diff options
context:
space:
mode:
Diffstat (limited to 'appinfo/setup.php')
-rw-r--r--appinfo/setup.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/appinfo/setup.php b/appinfo/setup.php
index d56b66971..0fefdfe63 100644
--- a/appinfo/setup.php
+++ b/appinfo/setup.php
@@ -13,17 +13,11 @@
namespace OCA\News\AppInfo;
-function is_setup() {
+function is_compatible() {
// prevent breakage on 5.4
if (version_compare(phpversion(), '5.4', '<')) {
return false;
}
- // disable useless codechecker in case security updates are shipped but
- // blocked because of a bug in the checker
- if (\OCP\Config::getSystemValue('appcodechecker') !== false) {
- \OCP\Config::setSystemValue('appcodechecker', false);
- }
-
return true;
}