Quote:
Originally Posted by CMilne
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!
|
Are the numbers "70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80" the forum id's?
So to do this stick
Code:
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;
}
into forumdisplay.php (changing the numbers to my own forum id's) and then add
Code:
$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;
}
into forumdisplay_sort? I'll try it tomorrow.
edit: I don't see any forumdisplay_sort file anywhere.