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 /plugins | |
parent | 954eb411e038745ee3e7995364a79d2fbda909bc (diff) |
(Puctuation) consistency in clientError() calls.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/OpenID/openidserver.php | 2 | ||||
-rw-r--r-- | plugins/TemplatePlugin.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/OpenID/openidserver.php b/plugins/OpenID/openidserver.php index 181cbdf45..afbca553f 100644 --- a/plugins/OpenID/openidserver.php +++ b/plugins/OpenID/openidserver.php @@ -103,7 +103,7 @@ class OpenidserverAction extends Action $response = $this->generateDenyResponse($request); } else { //invalid - $this->clientError(sprintf(_m('You are not authorized to use the identity %s'),$request->identity),$code=403); + $this->clientError(sprintf(_m('You are not authorized to use the identity %s.'),$request->identity),$code=403); } } else { $response = $this->oserver->handleRequest($request); diff --git a/plugins/TemplatePlugin.php b/plugins/TemplatePlugin.php index 5f3ad81f5..18aa8034c 100644 --- a/plugins/TemplatePlugin.php +++ b/plugins/TemplatePlugin.php @@ -300,7 +300,7 @@ class TemplateAction extends Action // verify that user is admin if (!($user->id == 1)) - $this->clientError(_('only User #1 can update the template'), $code = 401); + $this->clientError(_('Only User #1 can update the template.'), $code = 401); // open the old template $tpl_file = $this->templateFolder() . '/index.html'; |