Skip to content

Commit

Permalink
MDL-37459: Fix unprintable chars in wierd commit
Browse files Browse the repository at this point in the history
Somehow some unprintable chars made it into the last commit.

Removing them all...
  • Loading branch information
Damyon Wiese committed Jun 11, 2013
1 parent b618f2d commit 19127f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions course/moodleform_mod.php
Original file line number Diff line number Diff line change
Expand Up @@ -890,8 +890,8 @@ function apply_admin_defaults($datetimeoffsets = array()) {
if ($mform->elementExists($name)) {
$element = $mform->getElement($name);
if ($element->getType() == 'date_time_selector') {
$enabledsetting = $name . '_enabled';
                    if (empty($settings->$enabledsetting)) {
$enabledsetting = $name . '_enabled';
if (empty($settings->$enabledsetting)) {
$mform->setDefault($name, 0);
} else {
$relativetime = $usermidnight;
Expand Down

0 comments on commit 19127f6

Please sign in to comment.