Re: Error Log Files
Posted: Fri Oct 19, 2012 12:56 am
Turned out to be the pagination code, and Ian was very much on target in one of his earlier messages.
I had to change this:
To this:
I had to change this:
Code: Select all
<a href="{$smarty.section.i.index|string_format:$footer_pageLink}">{$smarty.section.i.index}</a>Code: Select all
<a href="{$footer_pageLink|replace:'%s':$smarty.section.i.index}">{$smarty.section.i.index}</a>