Gossamer Forum
Home : Products : Gossamer Links : Discussions :

How to Get Search Query Log to show more than 25 results???

Quote Reply
How to Get Search Query Log to show more than 25 results???
In glinks 3.0.0, how can I get the Search Query Logs page in the Admin area to show more than 25 results?

Thanks.
Quote Reply
Re: [mgeyman] How to Get Search Query Log to show more than 25 results??? In reply to
That's a bug in the template. If you edit admin/templates/admin/tools_search_logs.html, change:
Code:
<%if next%>
<div class="box">Pages: <%next%></div>
<%endif%>
to
Code:
<%if toolbar%>
<div class="box">Pages: <%toolbar%></div>
<%endif%>

Adrian
Quote Reply
Re: [brewt] How to Get Search Query Log to show more than 25 results??? In reply to
Adrian,

Thanks. I'll make the modification.

Take care.

Mark