MDL-66461 forum: Use correct notification class

This commit is contained in:
Juan Leyva
2019-08-21 13:22:08 +01:00
parent 5a0c850e50
commit da048e60db
+7 -7
View File
@@ -156,7 +156,7 @@ if (!empty($forum)) {
$urlfactory->get_course_url_from_forum($forumentity),
get_string('activityiscurrentlyhidden'),
null,
\core\output\notice::NOTIFY_ERROR
\core\output\notification::NOTIFY_ERROR
);
}
@@ -387,7 +387,7 @@ if (!empty($forum)) {
$urlfactory->get_discussion_view_url_from_discussion($discussionentity),
get_string('cannotdeletepost', 'forum'),
null,
\core\output\notice::NOTIFY_ERROR
\core\output\notification::NOTIFY_ERROR
);
}
@@ -403,14 +403,14 @@ if (!empty($forum)) {
$urlfactory->get_discussion_view_url_from_discussion($discussionentity),
get_string('couldnotdeleteratings', 'rating'),
null,
\core\output\notice::NOTIFY_ERROR
\core\output\notification::NOTIFY_ERROR
);
} else if ($replycount && !has_capability('mod/forum:deleteanypost', $modcontext)) {
redirect(
$urlfactory->get_discussion_view_url_from_discussion($discussionentity),
get_string('couldnotdeletereplies', 'rating'),
null,
\core\output\notice::NOTIFY_ERROR
\core\output\notification::NOTIFY_ERROR
);
} else {
if (!$postentity->has_parent()) {
@@ -420,7 +420,7 @@ if (!empty($forum)) {
$urlfactory->get_discussion_view_url_from_discussion($discussionentity),
get_string('cannotdeletediscussioninsinglediscussion', 'rating'),
null,
\core\output\notice::NOTIFY_ERROR
\core\output\notification::NOTIFY_ERROR
);
}
forum_delete_discussion($discussion, false, $course, $cm, $forum);
@@ -452,7 +452,7 @@ if (!empty($forum)) {
$urlfactory->get_discussion_view_url_from_post($postentity),
get_string('errorwhiledelete', 'forum'),
null,
\core\output\notice::NOTIFY_ERROR
\core\output\notification::NOTIFY_ERROR
);
}
@@ -487,7 +487,7 @@ if (!empty($forum)) {
forum_go_back_to($urlfactory->get_view_post_url_from_post($postentity)),
get_string('couldnotdeletereplies', 'rating'),
null,
\core\output\notice::NOTIFY_ERROR
\core\output\notification::NOTIFY_ERROR
);
}