$feed = new RssFeed();
$channel = $this->getDefaultChannel();
if (isset($this->category)) {
- $channel->title($this->category->getTitle());
+ $channel->title(\sprintf(
+ '%s - %s',
+ $this->category->getTitle(),
+ WCF::getLanguage()->get(\PAGE_TITLE)
+ ));
$channel->description($this->category->getDecoratedObject()->getDescription());
} else {
- $channel->title(WCF::getLanguage()->get('wcf.article.articles'));
+ $channel->title(\sprintf(
+ '%s - %s',
+ WCF::getLanguage()->get('wcf.article.articles'),
+ WCF::getLanguage()->get(\PAGE_TITLE)
+ ));
}
if ($this->articles->valid()) {
{
$feed = new RssFeed();
$channel = $this->getDefaultChannel();
- $channel->title(WCF::getLanguage()->get('wcf.user.menu.community.notification'));
+ $channel->title(\sprintf(
+ '%s - %s',
+ WCF::getLanguage()->get('wcf.user.menu.community.notification'),
+ WCF::getLanguage()->get(\PAGE_TITLE)
+ ));
$feed->channel($channel);
$notifications = UserNotificationHandler::getInstance()->getNotifications(20);