diff options
Diffstat (limited to 'actions/remotesubscribe.php')
-rw-r--r-- | actions/remotesubscribe.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index fca8a71ea..cb672e868 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -81,14 +81,14 @@ class RemotesubscribeAction extends Action { $user = $this->get_user(); if (!$user) { - $this->show_form(_('No such user!')); + $this->show_form(_('No such user.')); return; } $profile = $this->trimmed('profile_url'); if (!$profile) { - $this->show_form(_('No such user!')); + $this->show_form(_('No such user.')); return; } |