From 7504fc0aef277cc32097ae2d6b4147125e86fed8 Mon Sep 17 00:00:00 2001
From: Frank Karlitschek <frank@owncloud.org>
Date: Mon, 18 Nov 2013 18:42:06 +0100
Subject: [PATCH] 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

---
 lib/private/installer.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/private/installer.php b/lib/private/installer.php
index 9b49543c3f..8375b231e9 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=='') {
-- 
GitLab