From: Reini U. <ru...@x-...> - 2005-09-24 13:37:01
|
aphid schrieb: > how might i turn off the 20 link limit on posts? all my users are > authenticated and some paste very long pre-written essays with lots of > urls in them. Good point. Enhance the number in lib/editpage.php at isSpam() // 1. Not more then 20 new external links if ($this->numLinks($newtext) - $this->numLinks($oldtext) >= 20) Maybe a better idea is to calc the ratio of number of plain text chars / number of links and don't consider it spam if the ratio is high enough. I'll try that out. -- Reini Urban http://phpwiki.org/ |