Skip to content

Commit

Permalink
MDL-56358 tool_lp tool_cohortroles: allow null idnumber
Browse files Browse the repository at this point in the history
  • Loading branch information
danmarsden committed Oct 27, 2016
1 parent 577bd70 commit 97223bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion admin/tool/lp/classes/external/cohort_summary_exporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public static function define_properties() {
),
'idnumber' => array(
'type' => PARAM_RAW, // ID numbers are plain text.
'default' => ''
'default' => '',
'null' => NULL_ALLOWED
),
'visible' => array(
'type' => PARAM_BOOL,
Expand Down

0 comments on commit 97223bb

Please sign in to comment.