Skip to content

Commit

Permalink
Allow HTML in activity names
Browse files Browse the repository at this point in the history
  • Loading branch information
jleyva committed Sep 29, 2015
1 parent 1749064 commit d50652b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions externallib.php
Original file line number Diff line number Diff line change
Expand Up @@ -2297,7 +2297,7 @@ public static function core_course_get_course_module_returns() {
'id' => new external_value(PARAM_INT, 'The course module id'),
'course' => new external_value(PARAM_INT, 'The course id'),
'module' => new external_value(PARAM_INT, 'The module type id'),
'name' => new external_value(PARAM_TEXT, 'The activity name'),
'name' => new external_value(PARAM_RAW, 'The activity name'),
'modname' => new external_value(PARAM_COMPONENT, 'The module component name (forum, assign, etc..)'),
'instance' => new external_value(PARAM_INT, 'The activity instance id'),
'section' => new external_value(PARAM_INT, 'The module section id'),
Expand Down Expand Up @@ -2401,7 +2401,7 @@ public static function core_course_get_course_module_from_instance_returns() {
'id' => new external_value(PARAM_INT, 'The course module id'),
'course' => new external_value(PARAM_INT, 'The course id'),
'module' => new external_value(PARAM_INT, 'The module type id'),
'name' => new external_value(PARAM_TEXT, 'The activity name'),
'name' => new external_value(PARAM_RAW, 'The activity name'),
'modname' => new external_value(PARAM_COMPONENT, 'The module component name (forum, assign, etc..)'),
'instance' => new external_value(PARAM_INT, 'The activity instance id'),
'section' => new external_value(PARAM_INT, 'The module section id'),
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

$plugin->version = 2015010122;
$plugin->version = 2015010123;
$plugin->requires = 2012120300;
$plugin->component = 'local_aspiredu';
$plugin->release = '1.6';
$plugin->release = '1.7';
$plugin->maturity = MATURITY_STABLE;

0 comments on commit d50652b

Please sign in to comment.