From: Stanislav Malyshev Date: Mon, 31 Aug 2015 22:45:06 +0000 (-0700) Subject: Allow to export null values X-Git-Tag: 1.31.0-rc.0~10199^2 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=62a6c0b5d1c5b4c7d9e0aaac8823f41e651ad3a7;p=lhc%2Fweb%2Fwiklou.git Allow to export null values Bug: T110960 Change-Id: Idd90c8b6370547b1d9caa8b93e3d5b27942418d8 --- diff --git a/maintenance/getConfiguration.php b/maintenance/getConfiguration.php index d5f6834669..58382014f8 100644 --- a/maintenance/getConfiguration.php +++ b/maintenance/getConfiguration.php @@ -184,7 +184,7 @@ class GetConfiguration extends Maintenance { } return true; - } elseif ( is_scalar( $value ) ) { + } elseif ( is_scalar( $value ) || $value === null ) { return true; }