Spikeman,
Thanks for a great mod - using the version for 3.6 on vb 3.7.2 with vbseo.
On the text results page, the next and previous buttons don't work - they give a 406 error. There were some random characters in the URL if, when removed, caused it to work. I changed results_text.tpl from:
PHP Code:
{section name="prev" loop=1 show=$button.previous}
<input type="submit" name="prev" value="<< Previous Page">
{/section}
{section name="next" loop=1 show=$button.next}
<input type="submit" name="next" value="Next Page >>">
{/section}
to
PHP Code:
{section name="prev" loop=1 show=$button.previous}
<input type="submit" name="prev" value="Previous Page">
{/section}
{section name="next" loop=1 show=$button.next}
<input type="submit" name="next" value="Next Page">
{/section}
And this seems to have fixed it.