Ha! I thought someone might ask but I didn't want to complicate things. Having 1 would be useful because each link has a lot of extra fields that need to be checked carefully. We also have to go and look at the website of the link. It can get confusing, especially when sites submit multiple links, sometimes legitimately. For other sites we use 5 or sometimes 25 links per page, but in this case 1 would be ideal
Would it be tools_validate.html to mod?
I changed two instances of
Code:
<option value="1"<%if mh == 1%> selected="selected"<%endif%>>1</option> <option value="5"<%if mh == 5 or not mh%> selected="selected"<%endif%>>5</option> to
Code:
<option value="1"<%if mh == 1 or not mh%> selected="selected"<%endif%>>1</option> <option value="5"<%if mh == 5%> selected="selected"<%endif%>>5</option> but it still displays 5 links on the page (although the dropdown defaults to 1).
Any idea what else I need to mod please?
Thanks,
--Jo