diff options
author | Zach Copley <zach@status.net> | 2009-10-13 14:48:19 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-10-13 14:48:19 -0700 |
commit | 8be28f478dd578f1b8fca561238b9ee5a13c6b27 (patch) | |
tree | c8741a4872b1fdbaa42e8cead8b052dac0484b47 | |
parent | 4f5badda94071d9debc8dacfbc9072be3c2ee73d (diff) |
Fix syntax errors
-rw-r--r-- | actions/apidirectmessagenew.php | 2 | ||||
-rw-r--r-- | actions/apifavoritecreate.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actions/apidirectmessagenew.php b/actions/apidirectmessagenew.php index fa6cafbe8..ca1ee70dd 100644 --- a/actions/apidirectmessagenew.php +++ b/actions/apidirectmessagenew.php @@ -157,7 +157,7 @@ class ApiDirectMessageNewAction extends ApiAuthAction // Note: sending msgs to yourself is allowed by Twitter $errmsg = 'Don\'t send a message to yourself; ' . - 'just say it to yourself quietly instead.' + 'just say it to yourself quietly instead.'; $this->clientError(_($errmsg), 403, $this->format); return; diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php index a80a6492e..436739770 100644 --- a/actions/apifavoritecreate.php +++ b/actions/apifavoritecreate.php @@ -127,7 +127,7 @@ class ApiFavoriteCreateAction extends ApiAuthAction if (empty($fave)) { $this->clientError( - _('Could not create favorite.') + _('Could not create favorite.'), 403, $this->format ); |