X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FExtendedProfile%2FExtendedProfilePlugin.php;h=7b2e53c62ad23009dc5a07224a3b882723edd425;hb=14f03a237e1a67a764a75cfa8e6fed34f0074a4b;hp=51584e9f912e70e960ea7646a142f1e3430eaa90;hpb=bfc33f39998821fa3e18719af6983fc1b889da7f;p=quix0rs-gnu-social.git diff --git a/plugins/ExtendedProfile/ExtendedProfilePlugin.php b/plugins/ExtendedProfile/ExtendedProfilePlugin.php index 51584e9f91..7b2e53c62a 100644 --- a/plugins/ExtendedProfile/ExtendedProfilePlugin.php +++ b/plugins/ExtendedProfile/ExtendedProfilePlugin.php @@ -115,13 +115,12 @@ class ExtendedProfilePlugin extends Plugin return true; } - function onStartProfilePageActionsSection(HTMLOutputter $out, Profile $profile) { + function onEndShowAccountProfileBlock(HTMLOutputter $out, Profile $profile) { $user = User::staticGet('id', $profile->id); if ($user) { $url = common_local_url('profiledetail', array('nickname' => $user->nickname)); // TRANS: Link text on user profile page leading to extended profile page. $out->element('a', array('href' => $url, 'class' => 'profiledetail'), _m('More details...')); } - return true; } }