The new version of the script use a diffrent code in templates for pagination. If you make new installs and use new templates, is nothing for you to do.
If you want to update the script core though, and you already use own/modified template, tehre is a code to be edited. That is same code, existing in the category.tpl and home.tpl files
The full old paignation code is included in some {if} statement
{if sizeof($pages)>1}
Pages: {foreach from=$pages item=p} {$p.title} {/foreach}
|
{/if}
You also need to remover the open and closing ifs, and use a new code, so the pagination part will be somthing like this:
{if $paginate.page_current != 1} {paginate_first text="First" } {paginate_prev text="<<" } {/if} {paginate_middle page_limit="5" format="page" prefix=" " suffix=" "} {if $paginate.page_current != $paginate.page_total} {paginate_next text=">>"} {paginate_last text="Last"}{/if}
|