From 4d87e5c1093afcde392deb10bc6fef34ae243e5b Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Tue, 6 May 2014 14:57:42 +0800 Subject: [PATCH] MDL-45357 events: Normalise event description names --- mod/quiz/classes/event/edit_page_viewed.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/quiz/classes/event/edit_page_viewed.php b/mod/quiz/classes/event/edit_page_viewed.php index 2d1e619ca7a..fbb68d7496f 100644 --- a/mod/quiz/classes/event/edit_page_viewed.php +++ b/mod/quiz/classes/event/edit_page_viewed.php @@ -65,8 +65,8 @@ class edit_page_viewed extends \core\event\base { * @return string */ public function get_description() { - return "The edit page for the quiz with the course module id '$this->contextinstanceid' was viewed by the user with " . - "the id '$this->userid'."; + return "The user with the id '$this->userid' viewed the edit page for the quiz with " . + "the course module id '$this->contextinstanceid'."; } /**