]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Profile.php
Drop using the proxy large size for image preview
[friendica.git] / src / Model / Profile.php
index 0aa44c6735d3558fa710e664f6c6e6429fa104ad..c2b21e904bcaccc173e7fae8b23d1b72a52c4584 100644 (file)
@@ -455,14 +455,14 @@ class Profile
 
                if ($profile['account-type'] == Contact::TYPE_COMMUNITY) {
                        $mention_label = DI::l10n()->t('Post to group');
-                       $mention_url = 'compose/0?body=!' . $profile['addr'];
+                       $mention_url   = 'compose/0?body=!' . $profile['addr'];
                        $network_label = DI::l10n()->t('View group');
-                       $network_url = 'network/group/' . $profile['id'];
+                       $network_url   = 'network/group/' . $profile['id'];
                } else {
                        $mention_label = DI::l10n()->t('Mention');
-                       $mention_url = 'compose/0?body=@' . $profile['addr'];
+                       $mention_url   = 'compose/0?body=@' . $profile['addr'];
                        $network_label = DI::l10n()->t('Network Posts');
-                       $network_url = 'contact/' . $profile['id'] . '/conversations';
+                       $network_url   = 'contact/' . $profile['id'] . '/conversations';
                }
 
                $tpl = Renderer::getMarkupTemplate('profile/vcard.tpl');