mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +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
|
@ -184,7 +184,7 @@ if (strlen($result) > 0) {
|
|||
}
|
||||
|
||||
if (!$course = $DB->get_record('course', array('id'=>$data->courseid))) { // Check that course exists
|
||||
message_paypal_error_to_admin("Course $data->courseid doesn't exist", $data);;
|
||||
message_paypal_error_to_admin("Course $data->courseid doesn't exist", $data);
|
||||
die;
|
||||
}
|
||||
|
||||
|
|
|
@ -203,7 +203,7 @@ foreach ($users as $userid=>&$user) {
|
|||
$user['picture'] = $OUTPUT->render($user['picture']);
|
||||
$user['role'] = $renderer->user_roles_and_actions($userid, $user['roles'], $manager->get_assignable_roles(), $canassign, $PAGE->url);
|
||||
$user['group'] = $renderer->user_groups_and_actions($userid, $user['groups'], $manager->get_all_groups(), has_capability('moodle/course:managegroups', $manager->get_context()), $PAGE->url);
|
||||
$user['enrol'] = $renderer->user_enrolments_and_actions($user['enrolments']);;
|
||||
$user['enrol'] = $renderer->user_enrolments_and_actions($user['enrolments']);
|
||||
}
|
||||
$table->set_total_users($manager->get_total_users());
|
||||
$table->set_users($users);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue