At first i just noticed the link font was different, then i realized i wasn't able to "middle click" (scroll button) the links to open all the pages in new tabs (such that the tabs would open "behind" the voting page so i could continue to click each link without my current tab being switched). Also, i couldn't right click the link to give the option to open in a new tab that way.
In fact i couldn't get a right-click menu to pop up anywhere in the gray table (but it worked on other areas of the page). Anyway, the links would only respond to a normal left click, which opened a tab and immediately switched to it. i believe this is normal in most browsers when left-clicking links that would open new pages, but the problem here is that left click is my only option. If i wanted to open all the pages in tabs before i started typing in the captcha stuff, i'd have to keep switching back to the first tab each time.
Not the end of the world, but it's throwing off my groove. I'm guessing it happened due to changes being made to fix the "negative timer issue". I'd just like to know if these particular changes were intentional, and if so, what makes them necessary.
Thank you for your concern.
This is occuring because I had to employ POST data instead of GET data for the voting system, i.e. each vote link is it's own little HTML formular and the vote link is actually a submit button.
Short of using javascript trickery to replace the submit button with a actual text link, I don't think it can be fixed. If you can dig up any sort of CSS to make the formular behave more like a traditional link, please let me know ! ( I tried to make it look and seem like a link instead of a button but I was unable to find anything that'd allow ctrl right click or middle click. ;x )
As for why the change had to be done: Using GET only in the vote system made it vunerable to a XSS or Cross Site Scripting attack. Noone abused it thankfully but I wanted to fix it before someone does. ( Technical details: Someone could have used a html image tag or even a image tag in the forums with a vote link - everyone who views this vote link would , without noticing, get credited for voting even though they didn't. Because it is set as the url for the picture the browser of people who view it try to load it and boom, the vote goes through. )
Additionally, the vote links are now tokened via the form which enhances security and in addition the SQL queries have been tweaked. All this together fixes the negative timers bug and makes the voting system more stable and secure !
I hope you understand that due to the possibility of a exploit this is a necessity and again - if you find out anything to restore the functionality while at the same time keep it acting as a form submit button I would be very interested in implementing it.