no, it just shows em where they would appear ordered by dateline
you have to change this in the showresults part:
PHP Code:
if ($sortorder!="ascending") {
$orderbysql.=" DESC";
}
$orderbysql.=",thread.lastpost DESC";
into this:
PHP Code:
if ($sortorder!="ascending") {
$orderbysql.=" DESC";
}
$orderbysql.=",thread.lastpost DESC";
$orderbysql="thread.sticky DESC,".$orderbysql;
then it should show em on the first page always