Quote:
Originally Posted by InfidelMatt
Great hack, but I have a bunch of people accidentally giving 0 rep. is there any way to set the minimum to 1 instead of 0?
|
This is exactly the problem I was having. The problem is that people don't always read what is in the drop-down box, therefore it's important that the default choice is the max rep, rather than 0!
I've fixed the issue, and suggest that this change is made in the next version:
In the plugin "Generate HTML dropdown"
Find:
Code:
for($i = 0; $i <= $score; ++$i) {
Replace with:
Code:
for($i = $score; $i >= 0; $i=$i-1) {
This will reverse current order, making max rep the first choice, and 0 the last.