From 1e290629655d48ccc26f05ec1a264f19bf54e2b8 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Thu, 14 Aug 2014 18:03:35 -0700 Subject: [PATCH] CRM-14850, CRM-15089 - fatalErrorHandler - Use literal null instead of string 'null' It's weird to see string 'null' in UI, and a quick grep ("svngrep default.*null settings/") shows that we generally don't have string 'null' in settings. --- settings/Developer.setting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/Developer.setting.php b/settings/Developer.setting.php index 4d1dc8751b..0062ae5108 100644 --- a/settings/Developer.setting.php +++ b/settings/Developer.setting.php @@ -105,7 +105,7 @@ In the case of Drupal, this will cause all CiviCRM error messages to appear in t 'type' => 'String', 'quick_form_type' => 'Element', 'html_type' => 'text', - 'default' => 'null', + 'default' => null, 'add' => '4.3', 'title' => 'Fatal Error Handler', 'is_domain' => 1, -- 2.25.1