in core/com/allow_active_news
find
//----------------------------------
// Pages
//----------------------------------
$pages = '';
if ($number)
{
$pages_count = ceil($count_all / $number);
$pages_start_from = 0;
for($j=1; $j<= $pages_count; $j++)
{
if ( $pages_start_from != $start_from)
{
$URL = $PHP_SELF . build_uri('start_from,ucat,archive,subaction,id:comm_start_from', array($pages_start_from,$ucat,$url_archive,$subaction,$id));
$pages .= '[url=]'.$j.'[/url] ';
}
else $pages .= '<strong>'.$j.'</strong> ';
$pages_start_from += $number;
}
}
else
{
$no_next = true;
$no_prev = true;
}
$prev_next_msg = str_replace("{pages}", $pages, $prev_next_msg);
AND REPLACE WITH
//----------------------------------
// Pages
//----------------------------------
if($number){
$pages_count = @ceil($count_all/$number);
$pages_start_from = 0;
$pages = "";
for($j=1;$j<=$pages_count;$j++){
if($pages_start_from != $start_from){ $pages .= "[url=]
$url_archive&subaction=$subaction&id=$id&$user_query\">$j[/url] "; }
else{ $pages .= " <strong>$j</strong> "; }
$pages_start_from += $number;
}
$prev_next_msg = str_replace("{pages}", $pages, $prev_next_msg);
}
it's simply the code used in previous relases.
Still, PREVIUOS and NEXT link doesn't work.