summaryrefslogtreecommitdiff
path: root/actions/designadminpanel.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-04-10 00:58:57 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-04-10 00:58:57 +0200
commit3656a2cb13c0b6ba2326d6209739c1cd762ee2d2 (patch)
tree3e7e9860ca8860922a1ae428e1d484793b98b32e /actions/designadminpanel.php
parent47eed2c99906fefb1f43ad186da91e526d2741cf (diff)
Fix inconsistencies in clientError() messages
* use correct punctuation * single quotes when replace was possible * wording updated when needed
Diffstat (limited to 'actions/designadminpanel.php')
-rw-r--r--actions/designadminpanel.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php
index 30e8bde1a..41d917e3c 100644
--- a/actions/designadminpanel.php
+++ b/actions/designadminpanel.php
@@ -272,11 +272,11 @@ class DesignadminpanelAction extends AdminPanelAction
{
if (!empty($values['logo']) &&
!Validate::uri($values['logo'], array('allowed_schemes' => array('http', 'https')))) {
- $this->clientError(_("Invalid logo URL."));
+ $this->clientError(_('Invalid logo URL.'));
}
if (!in_array($values['theme'], Theme::listAvailable())) {
- $this->clientError(sprintf(_("Theme not available: %s"), $values['theme']));
+ $this->clientError(sprintf(_("Theme not available: %s."), $values['theme']));
}
}