]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/apifavoritedestroy.php
Preparing File for dynamic thumbnail generation.
[quix0rs-gnu-social.git] / actions / apifavoritedestroy.php
index 59ca5c96df621c6910a930ed475919f01edc7559..02f81cf4dfe25f9ea0b315d5bd2a929afc9ae44a 100644 (file)
@@ -34,8 +34,6 @@ if (!defined('STATUSNET')) {
     exit(1);
 }
 
-require_once INSTALLDIR . '/lib/apiauth.php';
-
 /**
  * Un-favorites the status specified in the ID parameter as the authenticating user.
  * Returns the un-favorited status in the requested format when successful.
@@ -64,12 +62,12 @@ class ApiFavoriteDestroyAction extends ApiAuthAction
         parent::prepare($args);
 
         $this->user   = $this->auth_user;
-        $this->notice = Notice::staticGet($this->arg('id'));
+        $this->notice = Notice::getKV($this->arg('id'));
         if ($this->notice->repeat_of != '' ) {
                 common_log(LOG_DEBUG, 'Trying to unFave '.$this->notice->id);
                 common_log(LOG_DEBUG, 'Will unFave '.$this->notice->repeat_of.' instead');
                 $real_notice_id = $this->notice->repeat_of;
-                $this->notice = Notice::staticGet($real_notice_id);
+                $this->notice = Notice::getKV($real_notice_id);
         }
 
         return true;