]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Consistently send Profiles into Fave::addNew()
authorBrion Vibber <brion@pobox.com>
Tue, 23 Mar 2010 18:06:37 +0000 (11:06 -0700)
committerBrion Vibber <brion@pobox.com>
Tue, 23 Mar 2010 18:08:30 +0000 (11:08 -0700)
actions/apifavoritecreate.php
classes/Fave.php
lib/command.php

index 3618f940183d08f3303fe519d95d86ca312674b4..00b6349b0a7a7fce85cd7f4dbed62816209b98ac 100644 (file)
@@ -123,7 +123,7 @@ class ApiFavoriteCreateAction extends ApiAuthAction
             return;
         }
 
-        $fave = Fave::addNew($this->user, $this->notice);
+        $fave = Fave::addNew($this->user->getProfile(), $this->notice);
 
         if (empty($fave)) {
             $this->clientError(
index a04f15e9c4e63cb1ddc0a0dc606eaa00dc355ccc..7ca9ade7f04b846c53982c8507fce5293436d793 100644 (file)
@@ -21,7 +21,15 @@ class Fave extends Memcached_DataObject
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
 
-    static function addNew($profile, $notice) {
+    /**
+     * Save a favorite record.
+     * @fixme post-author notification should be moved here
+     *
+     * @param Profile $profile the local or remote user who likes
+     * @param Notice $notice the notice that is liked
+     * @return mixed false on failure, or Fave record on success
+     */
+    static function addNew(Profile $profile, Notice $notice) {
 
         $fave = null;
 
index 9d550550f75562849873ce0177966dc4e937e444..8080fb8bc0071de9f4a4b991d1fb7f6a524ea69b 100644 (file)
@@ -273,7 +273,7 @@ class FavCommand extends Command
     function handle($channel)
     {
         $notice = $this->getNotice($this->other);
-        $fave = Fave::addNew($this->user, $notice);
+        $fave = Fave::addNew($this->user->getProfile(), $notice);
 
         if (!$fave) {
             $channel->error($this->user, _('Could not create favorite.'));