mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
MDL-75085 webservice: Fix parameter passed to external_format_value
This commit is contained in:
parent
880462a168
commit
2147bd6951
@ -193,7 +193,7 @@ class mod_page_external extends external_api {
|
||||
helper_for_get_mods_by_courses::standard_coursemodule_elements_returns(),
|
||||
[
|
||||
'content' => new external_value(PARAM_RAW, 'Page content'),
|
||||
'contentformat' => new external_format_value('content', 'Content format'),
|
||||
'contentformat' => new external_format_value('content', VALUE_REQUIRED, 'Content format'),
|
||||
'contentfiles' => new external_files('Files in the content'),
|
||||
'legacyfiles' => new external_value(PARAM_INT, 'Legacy files flag'),
|
||||
'legacyfileslast' => new external_value(PARAM_INT, 'Legacy files last control flag'),
|
||||
|
@ -242,7 +242,7 @@ class core_tag_external extends external_api {
|
||||
'name' => new external_value(PARAM_TAG, 'name'),
|
||||
'rawname' => new external_value(PARAM_RAW, 'tag raw name (may contain capital letters)'),
|
||||
'description' => new external_value(PARAM_RAW, 'tag description'),
|
||||
'descriptionformat' => new external_format_value(PARAM_INT, 'tag description format'),
|
||||
'descriptionformat' => new external_format_value(PARAM_INT, VALUE_REQUIRED, 'tag description format'),
|
||||
'flag' => new external_value(PARAM_INT, 'flag', VALUE_OPTIONAL),
|
||||
'official' => new external_value(PARAM_INT,
|
||||
'whether this flag is standard (deprecated, use isstandard)', VALUE_OPTIONAL),
|
||||
|
Loading…
x
Reference in New Issue
Block a user