mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 09:26:35 +02:00
MDL-36357 cleanup - remove double semicolons
This commit is contained in:
parent
a3f3ea2684
commit
0e35ba6ffc
53 changed files with 66 additions and 66 deletions
|
@ -122,7 +122,7 @@ class lesson_page_type_endofbranch extends lesson_page {
|
|||
$answer = new stdClass;
|
||||
}
|
||||
|
||||
$answer->timemodified = time();;
|
||||
$answer->timemodified = time();
|
||||
if (isset($properties->jumpto[0])) {
|
||||
$answer->jumpto = $properties->jumpto[0];
|
||||
}
|
||||
|
@ -230,4 +230,4 @@ class lesson_add_page_form_endofbranch extends lesson_add_page_form_base {
|
|||
|
||||
redirect($CFG->wwwroot."/mod/lesson/edit.php?id=".$PAGE->cm->id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -91,7 +91,7 @@ class lesson_page_type_endofcluster extends lesson_page {
|
|||
$answer = new stdClass;
|
||||
}
|
||||
|
||||
$answer->timemodified = time();;
|
||||
$answer->timemodified = time();
|
||||
if (isset($properties->jumpto[0])) {
|
||||
$answer->jumpto = $properties->jumpto[0];
|
||||
}
|
||||
|
@ -198,4 +198,4 @@ class lesson_add_page_form_endofcluster extends lesson_add_page_form_base {
|
|||
$lesson->add_message(get_string('addedendofcluster', 'lesson'), 'notifysuccess');
|
||||
redirect($CFG->wwwroot.'/mod/lesson/edit.php?id='.$PAGE->cm->id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue