X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapifavoritecreate.php;h=607fb76edc3dcc931442e8c102fec990cda8ca29;hb=b3bf036975593db27c6e7e653f18160d086f7b2d;hp=3f639159cc9edcfb70b3d963e7e92597692a0c0e;hpb=707dd44f6baa523e1187ff070ad102f96d168385;p=quix0rs-gnu-social.git diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php index 3f639159cc..607fb76edc 100644 --- a/actions/apifavoritecreate.php +++ b/actions/apifavoritecreate.php @@ -34,8 +34,6 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/apiauth.php'; - /** * Favorites the status specified in the ID parameter as the authenticating user. * Returns the favorite status when successful. @@ -64,12 +62,12 @@ class ApiFavoriteCreateAction 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 Fave '.$this->notice->id.', repeat of '.$this->notice->repeat_of); common_log(LOG_DEBUG, 'Will Fave '.$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; @@ -163,7 +161,7 @@ class ApiFavoriteCreateAction extends ApiAuthAction */ function notify($fave, $notice, $user) { - $other = User::staticGet('id', $notice->profile_id); + $other = User::getKV('id', $notice->profile_id); if ($other && $other->id != $user->id) { if ($other->email && $other->emailnotifyfav) { mail_notify_fave($other, $user, $notice);