summaryrefslogtreecommitdiff
path: root/plugins/RegisterThrottle
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-10-23 19:23:25 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-10-23 19:23:25 +0200
commit3329685beb28b8a487692b7fa147a23c492930c8 (patch)
tree93f0964d9ddca464d93027083cda1e0080b9ab3a /plugins/RegisterThrottle
parent0b6cc7c33d5239bbc9f01c00d3fb8c00a3d6e4c7 (diff)
* onPluginVersion added.
* i18n fix: use _m() in plugins, don't use _() * some translator documentation added. * superfluous whitespace removed.
Diffstat (limited to 'plugins/RegisterThrottle')
-rw-r--r--plugins/RegisterThrottle/RegisterThrottlePlugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/RegisterThrottle/RegisterThrottlePlugin.php b/plugins/RegisterThrottle/RegisterThrottlePlugin.php
index 7e2dde80f..0078d3c60 100644
--- a/plugins/RegisterThrottle/RegisterThrottlePlugin.php
+++ b/plugins/RegisterThrottle/RegisterThrottlePlugin.php
@@ -158,7 +158,7 @@ class RegisterThrottlePlugin extends Plugin
foreach ($ids as $id) {
$profile = Profile::staticGet('id', $id);
if ($profile && $profile->isSilenced()) {
- throw new Exception(_("A banned user has registered from this address."));
+ throw new Exception(_m("A banned user has registered from this address."));
}
}
}