]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Clear up warnings I introduced by refactoring Facebook posting
authorZach Copley <zach@status.net>
Mon, 24 May 2010 22:41:34 +0000 (22:41 +0000)
committerZach Copley <zach@status.net>
Mon, 24 May 2010 22:41:34 +0000 (22:41 +0000)
plugins/Facebook/facebookutil.php

index e52a3deaef3b3079f8c5d79c0a9e172eebc89315..d573c34ac13b9df28d3242e06369b72631434385 100644 (file)
@@ -147,7 +147,7 @@ function facebookBroadcastNotice($notice)
                 common_debug(
                     "FacebookPlugin - $user->nickname ($user->id), Facebook UID: $fbuid "
                     .'does NOT have status_update permission. Facebook '
-                    . 'returned: ' . var_export($can_publish, true)
+                    . 'returned: ' . var_export($canPublish, true)
                 );
             }
 
@@ -297,8 +297,6 @@ function publishStream($notice, $user, $fbuid)
         $fbuid
     );
 
-    common_debug('Facebook returned: ' . var_export($result, true));
-
     common_log(
         LOG_INFO,
         "FacebookPlugin - Posted notice $notice->id as a stream "
@@ -307,7 +305,6 @@ function publishStream($notice, $user, $fbuid)
     );
 }
 
-
 function formatNotice($notice, $user, $fbuid)
 {
     // Get the status 'verb' the user has set, if any
@@ -350,6 +347,8 @@ function updateProfileBox($facebook, $flink, $notice, $user) {
         $flink
     );
 
+    $fbuid = $flink->foreign_id;
+
     common_debug(
           'FacebookPlugin - Attempting to update profile box with '
           . "content from notice $notice->id for $user->nickname ($user->id)"