summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-08-29 06:20:19 +0000
committerZach Copley <zach@controlyourself.ca>2009-09-01 19:44:10 +0000
commit6adc50b97fb6d7b5dfd70321281f041f2f579461 (patch)
tree549edf1af65e83a6c9c3c80595894230d91435f1 /lib
parentddc95559215142e806428716772cb0edff206ecb (diff)
Fix error in log msg format specifier
Diffstat (limited to 'lib')
-rw-r--r--lib/twitter.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/twitter.php b/lib/twitter.php
index e049dc8df..455f7e7ef 100644
--- a/lib/twitter.php
+++ b/lib/twitter.php
@@ -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);