summaryrefslogtreecommitdiff
path: root/actions/grouprss.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2009-12-13 18:55:17 +0100
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2009-12-13 18:55:17 +0100
commit745e35ac1fcee01298db09a8649f79f410138652 (patch)
tree238bdad2ef3df30f4f02f916014d3991007f4338 /actions/grouprss.php
parent954eb411e038745ee3e7995364a79d2fbda909bc (diff)
(Puctuation) consistency in clientError() calls.
Diffstat (limited to 'actions/grouprss.php')
-rw-r--r--actions/grouprss.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/grouprss.php b/actions/grouprss.php
index 50e48a67e..866fc66eb 100644
--- a/actions/grouprss.php
+++ b/actions/grouprss.php
@@ -88,14 +88,14 @@ class groupRssAction extends Rss10Action
}
if (!$nickname) {
- $this->clientError(_('No nickname'), 404);
+ $this->clientError(_('No nickname.'), 404);
return false;
}
$this->group = User_group::staticGet('nickname', $nickname);
if (!$this->group) {
- $this->clientError(_('No such group'), 404);
+ $this->clientError(_('No such group.'), 404);
return false;
}