Quote:
Originally Posted by mfyvie
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.
|
This needs to be the default.