diff options
| -rw-r--r-- | templates/actor/profile.php | 2 | ||||
| -rw-r--r-- | templates/actor/profile_editable.php | 2 | ||||
| -rw-r--r-- | templates/actor/profile_page.php | 2 | ||||
| -rw-r--r-- | templates/thread_page.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/templates/actor/profile.php b/templates/actor/profile.php index aa403a6..25abd99 100644 --- a/templates/actor/profile.php +++ b/templates/actor/profile.php @@ -21,7 +21,7 @@ $actorUser = UserAccount::findByLinkedActor($actor); <div> <div class="displayName"><?= htmlspecialchars($actor->displayName) ?></div> <div class="pronouns"><?= htmlspecialchars($actor->pronouns) ?></div> - <div class="handle">@<?= $actor->getFullHandle($convertIdn = true) ?></div> + <div class="handle">@<?= $actor->getFullHandle(convertIdn: true) ?></div> <div class="joinedDate"><?= sprintf(__('user.profile.createdAt'), format_datetime($actor->created)) ?></div> <?php if ($actor->automated): ?> <div class="inlinePill"> diff --git a/templates/actor/profile_editable.php b/templates/actor/profile_editable.php index bb5f72c..0846403 100644 --- a/templates/actor/profile_editable.php +++ b/templates/actor/profile_editable.php @@ -15,7 +15,7 @@ value="<?= htmlspecialchars($actor->pronouns) ?>"> </div> </div> - <div class="handle">@<?= $actor->getFullHandle($convertIdn = true) ?></div> + <div class="handle">@<?= $actor->getFullHandle(convertIdn: true) ?></div> <div class="joinedDate"><?= sprintf(__('user.profile.createdAt'), format_datetime($actor->created)) ?></div> </div> </div> diff --git a/templates/actor/profile_page.php b/templates/actor/profile_page.php index 53bd47d..f954c95 100644 --- a/templates/actor/profile_page.php +++ b/templates/actor/profile_page.php @@ -8,7 +8,7 @@ $lang = get_ui_language(); $actorUser = UserAccount::findByLinkedActor($actor); call_template('skeleton', [ - 'pageTitle' => "$actor->displayName - @" . $actor->getFullHandle($convertIdn = true), + 'pageTitle' => "$actor->displayName - @" . $actor->getFullHandle(convertIdn: true), 'renderTitleHeading' => false, 'ogTitle' => $actor->displayName, 'ogDesc' => $actor->bio, diff --git a/templates/thread_page.php b/templates/thread_page.php index f36930c..4fbdc05 100644 --- a/templates/thread_page.php +++ b/templates/thread_page.php @@ -3,7 +3,7 @@ use Digitigrade\Model\Note; use Digitigrade\Model\UserAccount; call_template('skeleton', [ - 'pageTitle' => '"' . $note->plainContent . '" - @' . $note->author->getFullHandle($convertIdn = true), + 'pageTitle' => '"' . $note->plainContent . '" - @' . $note->author->getFullHandle(convertIdn: true), 'renderTitleHeading' => false, 'ogTitle' => $note->author->displayName, 'ogDesc' => $note->plainContent, |
