From: Christopher Vollick Date: Mon, 22 Feb 2010 16:20:44 +0000 (-0500) Subject: Made Blogspam Plugin Respect textlimit Setting. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a6afc1cfd6e99d83322910d4c1dafb16b1c4ae90;p=quix0rs-gnu-social.git Made Blogspam Plugin Respect textlimit Setting. The Blogspam plugin was setting a max-size to 140. It was therefore rejecting posts with more characters as spam. This kind of defeated the purpose of setting a higher limit... --- diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNetPlugin.php index 9b7ed1c123..d52e6006ac 100644 --- a/plugins/BlogspamNetPlugin.php +++ b/plugins/BlogspamNetPlugin.php @@ -120,7 +120,7 @@ class BlogspamNetPlugin extends Plugin $args['site'] = common_root_url(); $args['version'] = $this->userAgent(); - $args['options'] = "max-size=140,min-size=0,min-words=0,exclude=bayasian"; + $args['options'] = "max-size=" . common_config('site','textlimit') . ",min-size=0,min-words=0,exclude=bayasian"; return $args; }