From: Mikael Nordfeldth Date: Mon, 23 Jun 2014 17:08:15 +0000 (+0200) Subject: don't show ModPlus for group profiles X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4f59abea9a163df2f2b6ab9c07e4526a20e1d0c1;p=quix0rs-gnu-social.git don't show ModPlus for group profiles --- diff --git a/plugins/ModPlus/ModPlusPlugin.php b/plugins/ModPlus/ModPlusPlugin.php index 87ffe10e1e..e041b1aaf4 100644 --- a/plugins/ModPlus/ModPlusPlugin.php +++ b/plugins/ModPlus/ModPlusPlugin.php @@ -112,7 +112,7 @@ class ModPlusPlugin extends Plugin */ protected function showProfileOptions(HTMLOutputter $out, Profile $profile) { - if (!$profile->isLocal()) { + if (!$profile->isGroup() && !$profile->isLocal()) { $target = common_local_url('remoteprofile', array('id' => $profile->id)); // TRANS: Label for access to remote profile options. $label = _m('Remote profile options...');