MDL-54164 upgradelib: Remove close button on success notification

This commit is contained in:
Ryan Wyllie 2016-05-17 03:55:46 +00:00
parent 65cbefc403
commit 2059d6edb5

View file

@ -1526,7 +1526,9 @@ function print_upgrade_part_end($plugin, $installation, $verbose) {
} }
} }
if ($verbose) { if ($verbose) {
echo $OUTPUT->notification(get_string('success'), 'notifysuccess'); $notification = new \core\output\notification(get_string('success'), \core\output\notification::NOTIFY_SUCCESS);
$notification->set_show_closebutton(false);
echo $OUTPUT->render($notification);
print_upgrade_separator(); print_upgrade_separator();
} }
} }