Fix getLink()-Methode in UserProfileCommentUserNotificationEvent
authorJoshua Rüsweg <josh@bastelstu.be>
Wed, 4 Nov 2015 15:26:13 +0000 (16:26 +0100)
committerJoshua Rüsweg <josh@bastelstu.be>
Wed, 4 Nov 2015 15:26:13 +0000 (16:26 +0100)
The getLink()-Methode returns now the correct link. I don't want to load a user object for the link, so I use only the userID.

wcfsetup/install/files/lib/system/user/notification/event/UserProfileCommentUserNotificationEvent.class.php

index 497f21debcc5391ec6069f407af2a99758ac90fe..19c25ac400adb321a8be2194ff56f122b2fce71c 100644 (file)
@@ -97,7 +97,7 @@ class UserProfileCommentUserNotificationEvent extends AbstractUserNotificationEv
         * @see \wcf\system\user\notification\event\IUserNotificationEvent::getLink()
         */
        public function getLink() {
-               return LinkHandler::getInstance()->getLink('User', array('object' => WCF::getUser()), '#wall');
+               return LinkHandler::getInstance()->getLink('User', array('id' => $this->userNotificationObject->objectID), '#wall');
        }
        
        /**