Fixed  pageNavTag()

  • Thread starter Thread starter Syndol
  • Start date Start date
S

Syndol

Guest
Not really a bug but none the less:
In Template/Helper/Core.php, in function 'pageNavTag' (line 490)
PHP:
if (!is_array($linkParams))
{
    $options = array();
}

should perhaps be:
PHP:
if (!is_array($options))
{
    $options = array();
}
 
Top Bottom