From 5672bee85fdd762cdd04246099cd3d211d365c67 Mon Sep 17 00:00:00 2001 From: Romain Quetiez Date: Wed, 4 Dec 2013 16:15:26 +0000 Subject: [PATCH] Regression introduced with the capability to disable mandatory ext keys (defaults to true) SVN:trunk[3024] --- core/config.class.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/config.class.inc.php b/core/config.class.inc.php index 679637724..2b5b66eff 100644 --- a/core/config.class.inc.php +++ b/core/config.class.inc.php @@ -150,8 +150,8 @@ class Config 'disable_mandatory_ext_keys' => array( 'type' => 'bool', 'description' => 'For developpers: allow every external keys to be undefined', - 'default' => true, - 'value' => true, + 'default' => false, + 'value' => false, 'source_of_value' => '', 'show_in_conf_sample' => false, ),