On 02/05/06, John Bidder john@highlanddrive.wanadoo.co.uk wrote:
My local settings looks like this:
/** Text matching this regular expression will be recognised as spam
$wgSpamRegex='/display\s*:\s*none/i'; $wgSpamRegex="/overflow:auto/"; $wgSpamRegex="/overflow: auto/"; $wgSpamRegex="/overflow\s*:\s*auto/";
You're overwriting the value of the variable each time, so the last is the only one which takes effect. Try something like
$wgSpamRegex = '/(display\s*:\s*none|overflow\s*:\s*auto)/';
Rob Church