Well in your first post you had this code.
PHP Code:
$pagenav = construct_page_nav($pagenumber, $perpage, $linkcount['linkcount'], 'links.php?do=search' . $vbulletin->session->vars['sessionurl'] . '&view');
Which view is being put at the end of the url then vbulletin will add the &page=X. So if you aren't using view you can just remove &view. If you want to use view just do something like this.
PHP Code:
$pagenav = construct_page_nav($pagenumber, $perpage, $linkcount['linkcount'], 'links.php?do=search' . $vbulletin->session->vars['sessionurl'] . '&view=' . $variable);
Also here is a article if you haven't found it yet.