MDL-45563 message: Inverting IDs in description of event message_viewed

This commit is contained in:
Frederic Massart 2014-05-15 16:17:03 +08:00 committed by Dan Poltawski
parent 4e8a350c35
commit a71ece3757

View File

@ -75,7 +75,7 @@ class message_viewed extends base {
* @return string
*/
public function get_description() {
return "The user with id '$this->relateduserid' read a message from the user with id '$this->userid'.";
return "The user with id '$this->userid' read a message from the user with id '$this->relateduserid'.";
}
/**