Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'MDL-54164-master' of git://github.com/ryanwyllie/moodle
[moodle.git]
/
lib
/
upgradelib.php
diff --git
a/lib/upgradelib.php
b/lib/upgradelib.php
index
969eeb7
..
252f15a
100644
(file)
--- a/
lib/upgradelib.php
+++ b/
lib/upgradelib.php
@@
-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();
}
}