diff options
Diffstat (limited to 'actions/twitapifavorites.php')
-rw-r--r-- | actions/twitapifavorites.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/twitapifavorites.php b/actions/twitapifavorites.php index 4de567603..b5380bd94 100644 --- a/actions/twitapifavorites.php +++ b/actions/twitapifavorites.php @@ -38,19 +38,19 @@ class TwitapifavoritesAction extends TwitterapiAction { function favorites($args, $apidata) { parent::handle($args); - common_server_error("API method under construction.", $code=501); + common_server_error(_('API method under construction.'), $code=501); exit(); } function create($args, $apidata) { parent::handle($args); - common_server_error("API method under construction.", $code=501); + common_server_error(_('API method under construction.'), $code=501); exit(); } function destroy($args, $apidata) { parent::handle($args); - common_server_error("API method under construction.", $code=501); + common_server_error(_('API method under construction.'), $code=501); exit(); } |