diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-11-18 18:42:06 +0100 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-11-18 18:42:06 +0100 |
commit | 7504fc0aef277cc32097ae2d6b4147125e86fed8 (patch) | |
tree | c8a081c6564bfdca0a8a95aa80d4e01fa4b77e91 /lib | |
parent | b51d4058521714e56314eae20a342597bb017fe2 (diff) | |
download | nextcloud-server-7504fc0aef277cc32097ae2d6b4147125e86fed8.tar.gz nextcloud-server-7504fc0aef277cc32097ae2d6b4147125e86fed8.zip |
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')
-rw-r--r-- | lib/private/installer.php | 3 |
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=='') { |