]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/apiconversation.php
The overloaded DB_DataObject function staticGet is now called getKV
[quix0rs-gnu-social.git] / actions / apiconversation.php
index 504787b9a2da979a07e2e5d9aba3b2cc1ae5223b..23ddf02c5d60063cd0c81379f83bf20db410c84f 100644 (file)
@@ -69,7 +69,7 @@ class ApiconversationAction extends ApiAuthAction
             throw new ClientException(_('No conversation ID.'));
         }
 
-        $this->conversation = Conversation::staticGet('id', $convId);
+        $this->conversation = Conversation::getKV('id', $convId);
 
         if (empty($this->conversation)) {
             // TRANS: Client exception thrown when referring to a non-existing conversation ID (%d).