diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2009-11-08 23:33:58 +0100 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2009-11-08 23:33:58 +0100 |
commit | b10f362ede8c39746c168363bf4fa6481995592b (patch) | |
tree | c7a6d4d2ca280ba50d1dbac1113507432e3fe12e /plugins/TwitterBridge/daemons/synctwitterfriends.php | |
parent | 5ab709b73977131813884558bf56d97172a7aa26 (diff) | |
parent | fc5002015b2a9e16a3c6b9992d55b45c73a8d2fb (diff) |
Merge branch '0.9.x' of git://gitorious.org/statusnet/mainline into 0.9.x
Diffstat (limited to 'plugins/TwitterBridge/daemons/synctwitterfriends.php')
-rwxr-xr-x | plugins/TwitterBridge/daemons/synctwitterfriends.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index 76410c7cb..c89c02eed 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -126,7 +126,7 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon $conn->disconnect(); - // XXX: Could not find a less brutal way to blow + // XXX: Couldn't find a less brutal way to blow // away a cached connection global $_DB_DATAOBJECT; @@ -188,7 +188,7 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon if (empty($more_friends)) { common_log(LOG_WARNING, $this->name() . - " - Could not retrieve page $i " . + " - Couldn't retrieve page $i " . "of Twitter user $flink->foreign_id friends."); continue; } else { @@ -222,11 +222,11 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon if (!save_twitter_user($friend_id, $friend_name)) { common_log(LOG_WARNING, $this-name() . - " - Could not save $screen_name's friend, $friend_name."); + " - Couldn't save $screen_name's friend, $friend_name."); continue; } - // Check to see if there is a related local user + // Check to see if there's a related local user $friend_flink = Foreign_link::getByForeignID($friend_id, TWITTER_SERVICE); |