Skip to content

Commit

Permalink
Merge branch 'wip_25_mdl-34085' of https://github.com/iarenaza/moodle
Browse files Browse the repository at this point in the history
…into MOODLE_25_STABLE
  • Loading branch information
danpoltawski committed Jun 4, 2013
2 parents 1fe7be2 + 2f467a8 commit c687e8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions course/externallib.php
Original file line number Diff line number Diff line change
Expand Up @@ -902,9 +902,9 @@ public static function duplicate_course_parameters() {
"users" (int) Include users (default to 0 that is equal to no),
"role_assignments" (int) Include role assignments (default to 0 that is equal to no),
"comments" (int) Include user comments (default to 0 that is equal to no),
"completion_information" (int) Include user course completion information (default to 0 that is equal to no),
"userscompletion" (int) Include user course completion information (default to 0 that is equal to no),
"logs" (int) Include course logs (default to 0 that is equal to no),
"histories" (int) Include histories (default to 0 that is equal to no)'
"grade_histories" (int) Include histories (default to 0 that is equal to no)'
),
'value' => new external_value(PARAM_RAW, 'the value for the option 1 (yes) or 0 (no)'
)
Expand Down Expand Up @@ -966,9 +966,9 @@ public static function duplicate_course($courseid, $fullname, $shortname, $categ
'users' => 0,
'role_assignments' => 0,
'comments' => 0,
'completion_information' => 0,
'userscompletion' => 0,
'logs' => 0,
'histories' => 0
'grade_histories' => 0
);

$backupsettings = array();
Expand Down

0 comments on commit c687e8d

Please sign in to comment.