summaryrefslogtreecommitdiff
path: root/plugins/BlogspamNetPlugin.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-11-08 21:41:43 -0500
committerEvan Prodromou <evan@status.net>2009-11-08 21:41:43 -0500
commit691beefd0f3755bab195279b1c0d7cc583942b72 (patch)
tree8c2e51f14d45759e57639ae90e999c192dcd0a17 /plugins/BlogspamNetPlugin.php
parent76b0e6e6f4151235d5032d1aa90f0937b415bd87 (diff)
parentaa0d9a86152d2485de6de5ec572ae87085ebe780 (diff)
Merge branch '0.9.x' into adminpanel
Diffstat (limited to 'plugins/BlogspamNetPlugin.php')
-rw-r--r--plugins/BlogspamNetPlugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNetPlugin.php
index 51236001a..bf60fdcaf 100644
--- a/plugins/BlogspamNetPlugin.php
+++ b/plugins/BlogspamNetPlugin.php
@@ -85,7 +85,7 @@ class BlogspamNetPlugin extends Plugin
} else if (preg_match('/^SPAM(:(.*))?$/', $response, $match)) {
throw new ClientException(sprintf(_("Spam checker results: %s"), $match[2]), 400);
} else if (preg_match('/^OK$/', $response)) {
- // don't do anything
+ // do not do anything
} else {
throw new ServerException(sprintf(_("Unexpected response from %s: %s"), $this->baseUrl, $response), 500);
}