]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix error in log msg format specifier
authorZach Copley <zach@controlyourself.ca>
Sat, 29 Aug 2009 06:20:19 +0000 (06:20 +0000)
committerZach Copley <zach@controlyourself.ca>
Sat, 29 Aug 2009 06:20:19 +0000 (06:20 +0000)
lib/twitter.php

index b734d22d8e25ce1edd420e4251f85080721e72ac..6555251943fad1fef9d6ea65853e24a4205beaf3 100644 (file)
@@ -194,7 +194,7 @@ function broadcast_oauth($notice, $flink) {
 
             $errmsg = sprintf('cURL error trying to send notice to Twitter ' .
                               'for user %1$s (user id: %2$s) - ' .
-                              'code: %3$s message: $4$s.',
+                              'code: %3$s message: %4$s.',
                               $user->nickname, $user->id,
                               $e->getCode(), $e->getMessage());
             common_log(LOG_WARNING, $errmsg);
@@ -252,7 +252,7 @@ function broadcast_basicauth($notice, $flink)
 
             $errmsg = sprintf('cURL error trying to send notice to Twitter ' .
                               'for user %1$s (user id: %2$s) - ' .
-                              'code: %3$s message: $4$s.',
+                              'code: %3$s message: %4$s.',
                               $user->nickname, $user->id,
                               $e->getCode(), $e->getMessage());
             common_log(LOG_WARNING, $errmsg);