diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-10 00:07:20 +0200 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-09 15:29:41 -0700 |
commit | 5c6c9b6f5f40b50570505a366a858e83db9bb2ec (patch) | |
tree | 7b247813faa54fd3dd4e6f318c65831e28409ad4 /actions/confirmaddress.php | |
parent | 58d5d7baeec6fae77ac5d3e82e6072725fe9bf1b (diff) |
Update message formatting for serverError to use a starting capital and a leading period.
Diffstat (limited to 'actions/confirmaddress.php')
-rw-r--r-- | actions/confirmaddress.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/confirmaddress.php b/actions/confirmaddress.php index cc8351d8d..dc17499f5 100644 --- a/actions/confirmaddress.php +++ b/actions/confirmaddress.php @@ -87,7 +87,7 @@ class ConfirmaddressAction extends Action } $type = $confirm->address_type; if (!in_array($type, array('email', 'jabber', 'sms'))) { - $this->serverError(sprintf(_('Unrecognized address type %s'), $type)); + $this->serverError(sprintf(_('Unrecognized address type %s.'), $type)); return; } if ($cur->$type == $confirm->address) { |