Replace author name by server host in Ignore Server labels
This commit is contained in:
parent
f2c1ecd19b
commit
15d24a77c7
|
@ -435,7 +435,7 @@ class Item
|
||||||
$this->l10n->t('Block') => $block_link,
|
$this->l10n->t('Block') => $block_link,
|
||||||
$this->l10n->t('Ignore') => $ignore_link,
|
$this->l10n->t('Ignore') => $ignore_link,
|
||||||
$this->l10n->t('Collapse') => $collapse_link,
|
$this->l10n->t('Collapse') => $collapse_link,
|
||||||
$this->l10n->t("Ignore %s's server", $item['author-name']) => $ignoreserver_link,
|
$this->l10n->t("Ignore %s server", $authorBaseUri->getHost()) => $ignoreserver_link,
|
||||||
];
|
];
|
||||||
|
|
||||||
if (!empty($item['language'])) {
|
if (!empty($item['language'])) {
|
||||||
|
|
|
@ -285,7 +285,7 @@ class Post
|
||||||
$authorBaseUri = new Uri($item['author-baseurl'] ?? '');
|
$authorBaseUri = new Uri($item['author-baseurl'] ?? '');
|
||||||
if ($authorBaseUri->getHost() && !DI::baseUrl()->isLocalUrl($authorBaseUri)) {
|
if ($authorBaseUri->getHost() && !DI::baseUrl()->isLocalUrl($authorBaseUri)) {
|
||||||
$ignoreServer = [
|
$ignoreServer = [
|
||||||
'label' => DI::l10n()->t("Ignore %s's server", $item['author-name']),
|
'label' => DI::l10n()->t("Ignore %s server", $authorBaseUri->getHost()),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user