aboutsummaryrefslogtreecommitdiff
path: root/app/views/helpers/index/authors.phtml
diff options
context:
space:
mode:
authorGravatar Rob Loach <RobLoach@users.noreply.github.com> 2026-01-10 14:50:35 -0500
committerGravatar GitHub <noreply@github.com> 2026-01-10 20:50:35 +0100
commita5bbd679d9716dc0a2f4892efc46c403590845c0 (patch)
tree448e908c3ad4465c752090afb9f5701ecdee0e83 /app/views/helpers/index/authors.phtml
parentb0a5f063abcc021644ecaf4d5cefbd2c7dd276ec (diff)
Fix space between 'By:' and the author name (#8422)
* Fix space between 'By:' and the author name * Use a different approach than sprintf() * Revert "Use a different approach than sprintf()" This reverts commit 3ede55f000bb7ef5ed7c1d6ffd060139801838b7. * Apply a space between By: and the author name * Apply suggestion from @Alkarex Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/views/helpers/index/authors.phtml')
-rw-r--r--app/views/helpers/index/authors.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/helpers/index/authors.phtml b/app/views/helpers/index/authors.phtml
index 27cba9452..259a4b919 100644
--- a/app/views/helpers/index/authors.phtml
+++ b/app/views/helpers/index/authors.phtml
@@ -10,7 +10,7 @@
$first = true;
foreach ($this->entry->authors() as $author) {
$href = Minz_Url::display(Minz_Request::modifiedCurrentRequest(['search' => 'author:"' . htmlspecialchars_decode($author, ENT_QUOTES) . '"']));
- ?><?= $first ? '' : ' · ' ?><a href="<?= $href ?>" title="<?= _t('gen.action.filter') ?>"><?= $author ?></a><?php
+ ?><?= $first ? ' ' : ' · ' ?><a href="<?= $href ?>" title="<?= _t('gen.action.filter') ?>"><?= $author ?></a><?php
$first = false;
}
?>