]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Activity/joinlistitem.php
The overloaded DB_DataObject function staticGet is now called getKV
[quix0rs-gnu-social.git] / plugins / Activity / joinlistitem.php
index 8c11ff74ca270a69df9938baaff54db2f7de52c6..6e3dbcf62a6c9c63b5f7fc0c6ba2c61454714c5f 100644 (file)
@@ -51,17 +51,21 @@ class JoinListItem extends SystemListItem
         $notice = $this->nli->notice;
         $out    = $this->nli->out;
 
-               $mem = Group_member::staticGet('uri', $notice->uri);
+        $mem = Group_member::getKV('uri', $notice->uri);
 
         if (!empty($mem)) {
             $out->elementStart('div', 'join-activity');
-               $profile = $mem->getMember();
-               $group = $mem->getGroup();
-               $out->raw(sprintf(_m('<a href="%1$s">%2$s</a> joined the group <a href="%3$s">%4$s</a>.'),
-                                               $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('<a href="%1$s">%2$s</a> joined the group <a href="%3$s">%4$s</a>.'),
+                                $profile->profileurl,
+                                $profile->getBestName(),
+                                $group->homeUrl(),
+                                $group->getBestName()));
 
             $out->elementEnd('div');
         } else {