In revision 1.2.2.5 of fivestar.module I could not get it to allow any user to remove his vote / unvote / clear vote. I traced down the problem to the check (!empty($node) ? 'default' : $node->type), which should be (empty($node) ? 'default' : $node->type) or (!empty($node) ? $node->type : 'default'), in function fivestar_form(...). Here's a patch for the first option.

PS: I can not select CVS as target...

CommentFileSizeAuthor
fivestar-cvs-1.2.2.5-unvote.patch712 bytesmr700

Comments

quicksketch’s picture

Status: Reviewed & tested by the community » Fixed

Fixed.

Anonymous’s picture

Status: Fixed » Closed (fixed)