https://bugzilla.wikimedia.org/show_bug.cgi?id=34303

--- Comment #1 from Van de Bugger <van.de.bug...@gmail.com> 2012-02-09 19:15:37 
UTC ---
The same issue for voting. See the next function, wfCommentVote:

> // Blocked users cannot vote, obviously
> if( $wgUser->isBlocked() ) {
>     return '';
> }

Must be 

> // Blocked users cannot vote, obviously
> if( ! $wgUser->isAllowed( 'comment' ) || $wgUser->isBlocked() ) {
>     return '';
> }

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to