X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Fapifavoritecreate.php;h=607fb76edc3dcc931442e8c102fec990cda8ca29;hb=a1b0d5fa7e9edd9d8fed0bfaaa36a3247b3e2269;hp=90a29d2288962121241383ef2585d7cd8dc0fe19;hpb=e1e79e62360191626fbb3eae9f5d2af249780ac9;p=quix0rs-gnu-social.git diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php index 90a29d2288..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. @@ -58,14 +56,19 @@ class ApiFavoriteCreateAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ function prepare($args) { 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::getKV($real_notice_id); + } return true; } @@ -95,6 +98,7 @@ class ApiFavoriteCreateAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format @@ -157,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);