use wcf\system\user\notification\UserNotificationHandler;
use wcf\system\WCF;
-
-
/**
* Likeable object implementation for comments.
*
'author' => $this->author,
'authors' => $authors,
'count' => $count,
- 'others' => max($count - 1, 0)
+ 'others' => $count - 1
));
}
'authors' => $authors,
'comment' => $this->userNotificationObject,
'count' => $count,
- 'others' => max($count - 1, 0),
+ 'others' => $count - 1,
'owner' => $owner
));
}
'authors' => $authors,
'commentUser' => $commentUser,
'count' => $count,
- 'others' => max($count - 1, 0),
+ 'others' => $count - 1,
'owner' => $owner
));
}
'author' => $commentAuthor,
'authors' => $authors,
'count' => $count,
- 'others' => max($count - 1, 0)
+ 'others' => $count - 1
));
}
return $this->getLanguage()->getDynamicVariable('wcf.user.notification.commentResponse.message.stacked', array(
'authors' => $authors,
'count' => $count,
- 'others' => max($count - 1, 0),
+ 'others' => $count - 1,
'owner' => $owner
));
}
'author' => $this->author,
'authors' => $authors,
'count' => $count,
- 'others' => max($count - 1, 0)
+ 'others' => $count - 1
));
}