Index: trunk/extensions/AbuseFilter/AbuseFilter.class.php |
— | — | @@ -622,7 +622,7 @@ |
623 | 623 | |
624 | 624 | if ( !empty( $actions['warn'] ) ) { |
625 | 625 | $parameters = $actions['warn']['parameters']; |
626 | | - $warnKey = 'abusefilter-warned-' . $title->getPrefixedText() . '-' . $filter; |
| 626 | + $warnKey = 'abusefilter-warned-' . md5($title->getPrefixedText()) . '-' . $filter; |
627 | 627 | if ( !isset( $_SESSION[$warnKey] ) || !$_SESSION[$warnKey] ) { |
628 | 628 | $_SESSION[$warnKey] = true; |
629 | 629 | |