MDL-59649 mod_data: Fix content exporter

The content3 and content4 fields should be type PARAM_RAW
This commit is contained in:
Juan Leyva 2017-07-28 14:02:26 +02:00
parent 16a68a2f76
commit 4f5dbd38fb

View File

@ -70,12 +70,12 @@ class content_exporter extends exporter {
'null' => NULL_ALLOWED,
),
'content3' => array(
'type' => PARAM_BOOL,
'type' => PARAM_RAW,
'description' => 'Contents.',
'null' => NULL_ALLOWED,
),
'content4' => array(
'type' => PARAM_BOOL,
'type' => PARAM_RAW,
'description' => 'Contents.',
'null' => NULL_ALLOWED,
),