oops, forgot myself []
https://www.ubbdev.com/threads/php/images/icons/smile.gif[/]
This is the modification MattyJ did to the topthreads.php script - do this and rename it latestthreads.php, then ssi it to your other pages []
https://www.ubbdev.com/threads/php/images/icons/smile.gif[/]
#
# FIND:
#
// Set this variable to the total number of threads that you wish to show
$totalthreads = 10;
#
# Paste Under:
#
// set this variable to show only main topics or replies
$type = "topic"; # topic/reply/all
if ($type == "topic") {
$qual = "B_Number = B_Main";
} else if ($type == "reply") {
$qual = "B_Number <> B_Main";
} else {
$qual = "B_Number > 0";
}
#
# FIND:
#
$sort;
if ($topthreads == "views") {
$sort = "B_Counter";
}
else {
$sort = "B_Replies";
}
#
# REPLACE WITH:
#
$sort = "B_Last_Post";
#
# FIND:
#
FROM w3t_Posts
WHERE B_Number = B_Main
AND B_Last_Post > '$date'
ORDER BY $sort DESC
#
# REPLACE WITH:
#
FROM w3t_Posts
WHERE $qual
AND B_Last_Post > '$date'
ORDER BY $sort DESC
That should do it []
https://www.ubbdev.com/threads/php/images/icons/smile.gif[/]