From 2059d6edb53b53cfe0ab25f805acbb353b012a06 Mon Sep 17 00:00:00 2001 From: Ryan Wyllie Date: Tue, 17 May 2016 03:55:46 +0000 Subject: [PATCH] MDL-54164 upgradelib: Remove close button on success notification --- lib/upgradelib.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/upgradelib.php b/lib/upgradelib.php index 57ab054376b..6397e889505 100644 --- a/lib/upgradelib.php +++ b/lib/upgradelib.php @@ -1526,7 +1526,9 @@ function print_upgrade_part_end($plugin, $installation, $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(); } }