diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-18 15:11:25 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-18 15:11:25 -0700 |
commit | c8e3d08a8fb139003ae425e8b80296215f071b25 (patch) | |
tree | 53caa339ff5979199dd9ea4447ef20e15314c475 /plugins | |
parent | 69b25ba1be7a9f42a06a8297304dccc6e7ce23ec (diff) |
Fix notice warning about unused var -- was renamed during refactoring.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/OStatus/classes/Ostatus_profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 90a8d0ef4..e77c8f7e9 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -1403,7 +1403,7 @@ class Ostatus_profile extends Memcached_DataObject if (array_key_exists('feedurl', $hints)) { try { - common_log(LOG_INFO, "Discovery on acct:$addr with feed URL $feedUrl"); + common_log(LOG_INFO, "Discovery on acct:$addr with feed URL " . $hints['feedurl']); $oprofile = self::ensureFeedURL($hints['feedurl'], $hints); self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri); return $oprofile; |