Opened 14 years ago

Last modified 6 years ago

#6647 closed defect

Voting gets unnecessarily caught by FlashBlock extensions — at Initial Version

Reported by: ibboard Owned by: Dav Glass
Priority: high Component: FiveStarVotePlugin
Severity: minor Keywords:
Cc: Trac Release: 0.11

Description

I've got a FlashBlock script that replaces all <object> tags with a "blocked" element. Even though this hack just uses HTML and JS (although the JS seems superflou superfluous) it gets blocked because of the <object> tag, which is normally used for Flash and the like.

To fix it I just replaced

add_ctxtnav(req, tag.span(tag.object(ul), id='fivestarvotes', title=title, class_=className))

with

add_ctxtnav(req, tag.span(ul, id='fivestarvotes', title=title, class_=className))

in init.py

Change History (0)

Note: See TracTickets for help on using tickets.