Nordinho
08-30-2005, 07:06 PM
I'm trying to get my copied recent threads module to show only the latest threads in the left column while the original center module functions as the 'latest forum posts'...
I tried it a bit myself and come up with the following in latesttopics.php...
if ($mods['modcol'] == 1)
{
ORDER BY lastpost DESC;
}
else
{
ORDER BY thread.dateline DESC;
}
but this doesn't work...getting a parse error...any ideas how it could be done right??
I tried it a bit myself and come up with the following in latesttopics.php...
if ($mods['modcol'] == 1)
{
ORDER BY lastpost DESC;
}
else
{
ORDER BY thread.dateline DESC;
}
but this doesn't work...getting a parse error...any ideas how it could be done right??