]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix syntax errors
authorZach Copley <zach@status.net>
Tue, 13 Oct 2009 21:48:19 +0000 (14:48 -0700)
committerZach Copley <zach@status.net>
Tue, 13 Oct 2009 21:48:19 +0000 (14:48 -0700)
actions/apidirectmessagenew.php
actions/apifavoritecreate.php

index fa6cafbe8d4a82849617264a70c3c5cb7a581b73..ca1ee70dde6370697f5b1afcb2aa77f45aec01f5 100644 (file)
@@ -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;
index a80a6492e9414fc7c220572bcbfd2dfc67f35e69..43673977073abbb23dd93e7c337f37e3d2d884fa 100644 (file)
@@ -127,7 +127,7 @@ class ApiFavoriteCreateAction extends ApiAuthAction
 
         if (empty($fave)) {
             $this->clientError(
-                _('Could not create favorite.')
+                _('Could not create favorite.'),
                 403,
                 $this->format
             );