You could do what most other people have done and add $wgSpamRegex="/overflow:\s*auto/"; to your localsettings file; this will block any posts with that tag.
Arthur arthur@assys.net -----Original Message----- From: mediawiki-l-bounces@Wikimedia.org [mailto:mediawiki-l-bounces@Wikimedia.org] On Behalf Of Thomas Gries Sent: 12 March 2006 06:29 To: MediaWiki announcements and site admin list Subject: [Mediawiki-l] Vandalism on some wikis
Someone is vandalising wikis by adding a special div tag to pages:
<div style="overflow:auto; height: 1px;">......controversial contents.....
The div tags makes the contents invisible. I propose to add a mechanism to suppress storing of this particular tag. T.
_______________________________________________ MediaWiki-l mailing list MediaWiki-l@Wikimedia.org http://mail.wikipedia.org/mailman/listinfo/mediawiki-l
Moin,
On Sunday 12 March 2006 09:19, Arthur Guy wrote:
You could do what most other people have done and add $wgSpamRegex="/overflow:\s*auto/";
Better make that:
$wgSpamRegex="/overflow\s*:\s*auto/";
Best wishes,
Tels
On 3/12/06, Tels nospam-abuse@bloodgate.com wrote:
On Sunday 12 March 2006 09:19, Arthur Guy wrote:
You could do what most other people have done and add $wgSpamRegex="/overflow:\s*auto/";
Better make that:
$wgSpamRegex="/overflow\s*:\s*auto/";
adding an i to the end of the string makes the regex comparison case insensitive:
$wgSpamRegex="/overflow\s*:\s*auto/i";
mediawiki-l@lists.wikimedia.org