If I change this code in showthread.php it works, but is it safe to change?
PHP Code:
// only allow ajax on the last page of a thread when viewing oldest first
$show['allow_ajax_qr'] = (($vbulletin->GPC['pagenumber'] == ceil($totalposts / $perpage)) ? 1 : 0);
Change to:
PHP Code:
// only allow ajax on the last page of a thread when viewing oldest first
$show['allow_ajax_qr'] = 1;