X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FActivity%2Fjoinlistitem.php;h=c795225ef861d88e4c287b887994fa587b442d12;hb=fee9ddf84115bfa1062d7661fd439c5f8ddf985e;hp=19795240014b946767af1ce741fdcdd6ffe42fc2;hpb=904101b97312202578e0348fe4f436a10d73f3de;p=quix0rs-gnu-social.git diff --git a/plugins/Activity/joinlistitem.php b/plugins/Activity/joinlistitem.php index 1979524001..c795225ef8 100644 --- a/plugins/Activity/joinlistitem.php +++ b/plugins/Activity/joinlistitem.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * List item for when you join a group - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class JoinListItem extends SystemListItem { function showContent() @@ -52,22 +51,25 @@ class JoinListItem extends SystemListItem $notice = $this->nli->notice; $out = $this->nli->out; - $mem = Group_member::staticGet('uri', $notice->uri); - + $mem = Group_member::staticGet('uri', $notice->uri); + if (!empty($mem)) { $out->elementStart('div', 'join-activity'); - $profile = $mem->getMember(); - $group = $mem->getGroup(); - $out->raw(sprintf(_m('%s joined the group %s.'), - $profile->profileurl, - $profile->getBestName(), - $group->homeUrl(), - $group->getBestName())); - + $profile = $mem->getMember(); + $group = $mem->getGroup(); + + // TRANS: Text for "joined list" item in activity plugin. + // TRANS: %1$s is a profile URL, %2$s is a profile name, + // TRANS: %3$s is a group home URL, %4$s is a group name. + $out->raw(sprintf(_m('%2$s joined the group %4$s.'), + $profile->profileurl, + $profile->getBestName(), + $group->homeUrl(), + $group->getBestName())); + $out->elementEnd('div'); } else { parent::showContent(); } - } + } } -