From 28d40e5eed82626be7543a0998cf4956b95034cc Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 19 Jan 2011 16:13:42 -0800 Subject: [PATCH] Fix syntax error in error msg --- actions/apioauthaccesstoken.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/apioauthaccesstoken.php b/actions/apioauthaccesstoken.php index 064d05120f..a3ce9edbf6 100644 --- a/actions/apioauthaccesstoken.php +++ b/actions/apioauthaccesstoken.php @@ -98,7 +98,7 @@ class ApiOauthAccessTokenAction extends ApiOauthAction common_log(LOG_WARNING, $msg); // TRANS: Client error given from the OAuth API when the request token or verifier is invalid. - $this->clientError(_("Invalid request token or verifier.", 400, 'text')); + $this->clientError(_("Invalid request token or verifier."), 400, 'text'); } else { common_log( LOG_INFO, -- 2.39.5