From b63065cea38e8da08b1bc567b5422a9159700191 Mon Sep 17 00:00:00 2001 From: Juan Leyva Date: Fri, 12 Feb 2021 11:00:13 +0100 Subject: [PATCH] MDL-70863 mod_forum: Allow NULL in timecreated --- mod/forum/classes/local/exporters/post.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/mod/forum/classes/local/exporters/post.php b/mod/forum/classes/local/exporters/post.php index e9c445ed7ac..eed547a4818 100644 --- a/mod/forum/classes/local/exporters/post.php +++ b/mod/forum/classes/local/exporters/post.php @@ -105,8 +105,16 @@ class post extends exporter { 'default' => null, 'null' => NULL_ALLOWED ], - 'timecreated' => ['type' => PARAM_INT], - 'timemodified' => ['type' => PARAM_INT], + 'timecreated' => [ + 'type' => PARAM_INT, + 'default' => null, + 'null' => NULL_ALLOWED + ], + 'timemodified' => [ + 'type' => PARAM_INT, + 'default' => null, + 'null' => NULL_ALLOWED + ], 'unread' => [ 'type' => PARAM_BOOL, 'optional' => true,