]> 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>
Tue, 1 Sep 2009 19:44:10 +0000 (19:44 +0000)
lib/twitter.php

index e049dc8df0115106cffddca7eca072d544161b24..455f7e7ef0ca556fd42a515e39c3807112ada395 100644 (file)
@@ -196,7 +196,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);
@@ -254,7 +254,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);