diff --git a/lib/badgeslib.php b/lib/badgeslib.php index 39f48d71531..bf5b4e1e9d8 100644 --- a/lib/badgeslib.php +++ b/lib/badgeslib.php @@ -403,7 +403,7 @@ class badge { 'context' => $this->get_context(), 'objectid' => $this->id, 'relateduserid' => $userid, - 'other' => array('expiredate' => $issued->dateexpire, 'badgeissuedid' => $result) + 'other' => array('dateexpire' => $issued->dateexpire, 'badgeissuedid' => $result) ); \core\event\badge_awarded::create($eventdata)->trigger(); diff --git a/lib/classes/event/badge_awarded.php b/lib/classes/event/badge_awarded.php index b1a3f0c7867..4c9e0215eb7 100644 --- a/lib/classes/event/badge_awarded.php +++ b/lib/classes/event/badge_awarded.php @@ -66,7 +66,7 @@ class badge_awarded extends base { * @return string */ public function get_description() { - return "The user with the id '$this->relateduserid' has been awarded the badge with id '".$this->objectid."'."; + return "The user with id '$this->relateduserid' has been awarded the badge with id '".$this->objectid."'."; } /**