I am getting this error;
Parse error: parse error, unexpected '{' in /home/stargate/public_html/forumdisplay.php(676) : eval()'d code on line 2
With this code as a hook under 'forumdisplay_sort'
if(in_array($foruminfo['forumid'], array(70,71,72,73,74,75,76,77,78,79,80))
{
$sqlsortorder = 'ASC';
$sqlsortfield = 'thread.dateline';
$sortfield = 'lastpost';
$handled = true;
}
Changed your code to;
$array = array(70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80);
if(in_array($foruminfo['forumid'], $array)) {
$sqlsortorder = 'ASC';
$sqlsortfield = 'thread.lastpost';
$sortfield = 'lastpost';
$handled = true;
}
and it worked. Thanks heaps!
|