From: Michael Date: Wed, 5 Aug 2020 12:57:02 +0000 (+0000) Subject: Fix wrong parameter order X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d56ac8d58f6e9ec0dd104ac19e74aeb0af86351a;hp=603b1f965d181ad20ecfcd7ca2993baa7f103778;p=friendica.git Fix wrong parameter order --- diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index dcbeccc301..4b070e99af 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -201,7 +201,7 @@ function frio_remote_nav($a, &$nav) $remoteUser = Contact::getById(remote_user(), $fields); $nav['remote'] = DI::l10n()->t('Guest'); } elseif (Model\Profile::getMyURL()) { - $remoteUser = Contact::getByURL($homelink, $fields); + $remoteUser = Contact::getByURL($homelink, null, $fields); $nav['remote'] = DI::l10n()->t('Visitor'); } else { $remoteUser = null;