]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix pkeyget call
authorEvan Prodromou <evan@status.net>
Tue, 7 Sep 2010 19:34:10 +0000 (15:34 -0400)
committerEvan Prodromou <evan@status.net>
Tue, 7 Sep 2010 19:34:10 +0000 (15:34 -0400)
Fix the pkeyget call in Twitter_synch_Status

plugins/TwitterBridge/Twitter_synch_status.php

index 2be3f814004e2ed7d8bce892441c5bf3e8db745e..2a5f1fd60581f132ae13addaeeb2ca17a3c6fe61 100644 (file)
@@ -64,13 +64,27 @@ class Twitter_synch_status extends Memcached_DataObject
      * @param string $k Key to use to lookup (usually 'foreign_id' for this class)
      * @param mixed  $v Value to lookup
      *
-     * @return User_greeting_count object found, or null for no hits
+     * @return Twitter_synch_status object found, or null for no hits
      *
      */
 
     function staticGet($k, $v=null)
     {
-        return Memcached_DataObject::staticGet('Twitter_synch_status', $k, $v);
+        throw new Exception("Use pkeyGet() for this class.");
+    }
+
+    /**
+     * Get an instance by compound primary key
+     *
+     * @param array $kv key-value pair array
+     *
+     * @return Twitter_synch_status object found, or null for no hits
+     *
+     */
+
+    function pkeyGet($kv)
+    {
+        return Memcached_DataObject::pkeyGet('Twitter_synch_status', $kv);
     }
 
     /**