Lord I need to get more sleep

.
Change:
PHP Code:
$getthreads = $vbulletin->db->query_read("
SELECT * FROM thread
WHERE forumid = ''
LIMIT 5
ORDER BY threadid
DESC
");
To:
PHP Code:
$getthreads = $vbulletin->db->query_read("
SELECT * FROM thread
WHERE forumid = ''
ORDER BY threadid
DESC
LIMIT 5
");
Also look at the WHERE forumid = '' - You need to enter the ID of the forum you wish to pull the data from between the ''.