From 739ca603bc388c97a11a8d6a4843396bf5d52088 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 21:33:28 -0400 Subject: [PATCH] spelling: author Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Module/Post/Tag/Add.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Module/Post/Tag/Add.php b/src/Module/Post/Tag/Add.php index 8c4858794..53be1c639 100644 --- a/src/Module/Post/Tag/Add.php +++ b/src/Module/Post/Tag/Add.php @@ -118,10 +118,10 @@ EOT; EOT; - $tagger_link = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]'; - $aauthor_link = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]'; - $post_link = '[url=' . $item['plink'] . ']' . ($item['resource-id'] ? $this->t('photo') : $this->t('post')) . '[/url]'; - $term_link = '#[url=' . $tagid . ']' . $term . '[/url]'; + $tagger_link = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]'; + $author_link = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]'; + $post_link = '[url=' . $item['plink'] . ']' . ($item['resource-id'] ? $this->t('photo') : $this->t('post')) . '[/url]'; + $term_link = '#[url=' . $tagid . ']' . $term . '[/url]'; $post = [ 'guid' => System::createUUID(), @@ -138,7 +138,7 @@ EOT; 'author-name' => $contact['name'], 'author-link' => $contact['url'], 'author-avatar' => $contact['thumb'], - 'body' => $this->t('%1$s tagged %2$s\'s %3$s with %4$s', $tagger_link, $aauthor_link, $post_link, $term_link), + 'body' => $this->t('%1$s tagged %2$s\'s %3$s with %4$s', $tagger_link, $author_link, $post_link, $term_link), 'verb' => Activity::TAG, 'target-type' => $targettype, 'target' => $target,