From: Zach Copley Date: Sat, 29 Aug 2009 06:20:19 +0000 (+0000) Subject: Fix error in log msg format specifier X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c02e8a46878ba3ba1ea24f746db8ef0039d19612;p=quix0rs-gnu-social.git Fix error in log msg format specifier --- diff --git a/lib/twitter.php b/lib/twitter.php index b734d22d8e..6555251943 100644 --- a/lib/twitter.php +++ b/lib/twitter.php @@ -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);