The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Query: Display attachments within actual forum and link to their posts
This query displays you a list of all attachments within the actual forum so you can have this list done within another template:
Code:
SELECT post.userid, post.username, thread.threadid, thread.title, SUBSTRING(filename,1,LENGTH(filename)-(LENGTH(extension)+1)) AS filename, extension, post.postid FROM attachment,thread,post WHERE thread.forumid = " . $foruminfo['forumid'] . " AND thread.threadid=post.threadid AND post.postid = attachment.postid AND extension NOT IN (\"jpg\",\"gif\",\"bmp\",\"tiff\") ORDER BY attachment.postid DESC |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|