Fix notice warning about unused var -- was renamed during refactoring.

This commit is contained in:
Brion Vibber 2010-03-18 15:11:25 -07:00
parent 69b25ba1be
commit c8e3d08a8f
1 changed files with 1 additions and 1 deletions

View File

@ -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;