Skip to content

Commit

Permalink
MDL-52219 admin: Enable completion and restricted access by default
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Nov 26, 2015
1 parent c18acb8 commit e354bf1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions admin/settings/subsystems.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
// Conditional activities: completion and availability
$optionalsubsystems->add(new admin_setting_configcheckbox('enablecompletion',
new lang_string('enablecompletion','completion'),
new lang_string('configenablecompletion','completion'), 0));
new lang_string('configenablecompletion', 'completion'), 1));

$options = array(
1 => get_string('completionactivitydefault', 'completion'),
Expand All @@ -45,7 +45,7 @@

$optionalsubsystems->add($checkbox = new admin_setting_configcheckbox('enableavailability',
new lang_string('enableavailability', 'availability'),
new lang_string('enableavailability_desc', 'availability'), 0));
new lang_string('enableavailability_desc', 'availability'), 1));
$checkbox->set_affects_modinfo(true);

$optionalsubsystems->add(new admin_setting_configcheckbox('enableplagiarism', new lang_string('enableplagiarism','plagiarism'), new lang_string('configenableplagiarism','plagiarism'), 0));
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

defined('MOODLE_INTERNAL') || die();

$version = 2015111600.02; // YYYYMMDD = weekly release date of this DEV branch.
$version = 2015112600.00; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.

Expand Down

0 comments on commit e354bf1

Please sign in to comment.