Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2013-11-18 21:42:06 +0400
committerFrank Karlitschek <frank@owncloud.org>2013-11-18 21:42:06 +0400
commit7504fc0aef277cc32097ae2d6b4147125e86fed8 (patch)
treec8a081c6564bfdca0a8a95aa80d4e01fa4b77e91 /lib/private/installer.php
parentb51d4058521714e56314eae20a342597bb017fe2 (diff)
switch code checker on by default. apps are not allowed to access some of the internal classes where we have a public api for now
Diffstat (limited to 'lib/private/installer.php')
-rw-r--r--lib/private/installer.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/installer.php b/lib/private/installer.php
index 9b49543c3fb..8375b231e9b 100644
--- a/lib/private/installer.php
+++ b/lib/private/installer.php
@@ -460,8 +460,7 @@ class OC_Installer{
);
// is the code checker enabled?
- if(OC_Config::getValue('appcodechecker', false)) {
-
+ if(OC_Config::getValue('appcodechecker', true)) {
// check if grep is installed
$grep = exec('which grep');
if($grep=='') {