mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
MDL-59649 mod_data: Fix content exporter
The content3 and content4 fields should be type PARAM_RAW
This commit is contained in:
parent
16a68a2f76
commit
4f5dbd38fb
@ -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,
|
||||
),
|
||||
|
Loading…
x
Reference in New Issue
Block a user