summaryrefslogtreecommitdiff
path: root/lib/facebookutil.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-02-13 10:08:11 -0800
committerZach Copley <zach@controlyourself.ca>2009-02-13 10:08:11 -0800
commit02184df7c8fd40ee9d1b134fd318e0c6f444ae01 (patch)
treeb405a0a62aed95f96a537ce579392e70e70b7234 /lib/facebookutil.php
parent4ad5d55ecf65fb1c9f58211b37f8f111e9ca0c7b (diff)
Fixed arguments to syslog (LOG_ERR, not LOG_ERROR) and removed unused function
Diffstat (limited to 'lib/facebookutil.php')
-rw-r--r--lib/facebookutil.php21
1 files changed, 3 insertions, 18 deletions
diff --git a/lib/facebookutil.php b/lib/facebookutil.php
index e2ad20d19..ec3987273 100644
--- a/lib/facebookutil.php
+++ b/lib/facebookutil.php
@@ -25,21 +25,6 @@ define("FACEBOOK_SERVICE", 2); // Facebook is foreign_service ID 2
define("FACEBOOK_NOTICE_PREFIX", 1);
define("FACEBOOK_PROMPTED_UPDATE_PREF", 2);
-// Gets all the notices from users with a Facebook link since a given ID
-function getFacebookNotices($since)
-{
- $qry = 'SELECT notice.* ' .
- 'FROM notice ' .
- 'JOIN foreign_link ' .
- 'WHERE notice.profile_id = foreign_link.user_id ' .
- 'AND foreign_link.service = 2';
-
- // XXX: What should the limit be?
- //static function getStreamDirect($qry, $offset, $limit, $since_id, $before_id, $order, $since) {
-
- return Notice::getStreamDirect($qry, 0, 1000, 0, 0, null, $since);
-}
-
function getFacebook()
{
$apikey = common_config('facebook', 'apikey');
@@ -97,7 +82,7 @@ function isFacebookBound($notice, $flink) {
}
} catch(FacebookRestClientException $e){
- common_log(LOG_ERROR, $e->getMessage());
+ common_log(LOG_ERR, $e->getMessage());
$success = false;
}
@@ -126,7 +111,7 @@ function facebookBroadcastNotice($notice)
$status = "$prefix $notice->content";
} catch(FacebookRestClientException $e) {
- common_log(LOG_ERROR, $e->getMessage());
+ common_log(LOG_ERR, $e->getMessage());
return false;
}
@@ -136,7 +121,7 @@ function facebookBroadcastNotice($notice)
$facebook->api_client->users_setStatus($status, $fbuid, false, true);
updateProfileBox($facebook, $flink, $notice);
} catch(FacebookRestClientException $e) {
- common_log(LOG_ERROR, $e->getMessage());
+ common_log(LOG_ERR, $e->getMessage());
return false;
// Should we remove flink if this fails?