]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/OStatus/actions/peopletagsalmon.php
The overloaded DB_DataObject function staticGet is now called getKV
[quix0rs-gnu-social.git] / plugins / OStatus / actions / peopletagsalmon.php
index 19e56cb216a947b8a10eb4d7e6710200059e91c9..12af8c2b31ce957f7eb19bd842c22498efcca986 100644 (file)
@@ -40,14 +40,14 @@ class PeopletagsalmonAction extends SalmonAction
             $this->clientError(_m('No ID.'));
         }
 
-        $this->peopletag = Profile_list::staticGet('id', $id);
+        $this->peopletag = Profile_list::getKV('id', $id);
 
         if (empty($this->peopletag)) {
             // TRANS: Client error displayed when referring to a non-existing list.
             $this->clientError(_m('No such list.'));
         }
 
-        $oprofile = Ostatus_profile::staticGet('peopletag_id', $id);
+        $oprofile = Ostatus_profile::getKV('peopletag_id', $id);
 
         if (!empty($oprofile)) {
             // TRANS: Client error displayed when trying to send a message to a remote list.