Skip to content

Commit

Permalink
MDL-52012 core_lib: Add namespace to $OUTPUT->notify_message definition
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyjbutler committed Nov 2, 2015
1 parent 821ab27 commit d3069af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/outputrenderers.php
Original file line number Diff line number Diff line change
Expand Up @@ -2835,7 +2835,7 @@ public function notify_success($message) {
* @return string HTML fragment.
*/
public function notify_message($message) {
$n = new notification($message, notification::NOTIFY_MESSAGE);
$n = new \core\output\notification($message, \core\output\notification::NOTIFY_MESSAGE);
return $this->render($n);
}

Expand Down

0 comments on commit d3069af

Please sign in to comment.