]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix notice warning about unused var -- was renamed during refactoring.
authorBrion Vibber <brion@pobox.com>
Thu, 18 Mar 2010 22:11:25 +0000 (15:11 -0700)
committerBrion Vibber <brion@pobox.com>
Thu, 18 Mar 2010 22:11:25 +0000 (15:11 -0700)
plugins/OStatus/classes/Ostatus_profile.php

index 90a8d0ef47ff8643a4461088065e7c7cb5ed4529..e77c8f7e920fce19736c3ffb9af4bdb2cca7a3e8 100644 (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;