diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2009-12-13 18:55:17 +0100 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2009-12-13 18:55:17 +0100 |
commit | 745e35ac1fcee01298db09a8649f79f410138652 (patch) | |
tree | 238bdad2ef3df30f4f02f916014d3991007f4338 /lib | |
parent | 954eb411e038745ee3e7995364a79d2fbda909bc (diff) |
(Puctuation) consistency in clientError() calls.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/profileformaction.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/profileformaction.php b/lib/profileformaction.php index 8cb5f6a93..8a934666e 100644 --- a/lib/profileformaction.php +++ b/lib/profileformaction.php @@ -120,7 +120,7 @@ class ProfileFormAction extends Action if ($action) { common_redirect(common_local_url($action, $args), 303); } else { - $this->clientError(_("No return-to arguments")); + $this->clientError(_("No return-to arguments.")); } } @@ -134,6 +134,6 @@ class ProfileFormAction extends Action function handlePost() { - $this->serverError(_("unimplemented method")); + $this->serverError(_("Unimplemented method.")); } } |