The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#9
|
|||
|
|||
![]()
Ok i got it.
Because my Sql is rusty could you please provide me the correct code? --------------- Added [DATE]1245698588[/DATE] at [TIME]1245698588[/TIME] --------------- Ok i made it Code:
$query = $vbulletin->db->query_read(" SELECT a.attachmentid, a.userid, p.username, a.dateline, a.filename, a.filesize, a.counter, p.postid, p.pagetext, t.threadid, t.title, f.title FROM " . TABLE_PREFIX . "attachment AS a LEFT JOIN " . TABLE_PREFIX . "post AS p ON (a.postid = p.postid) LEFT JOIN " . TABLE_PREFIX . "thread AS t ON (p.threadid = t.threadid) LEFT JOIN " . TABLE_PREFIX . "forum AS f ON (f.forumid = t.forumid) WHERE a.thumbnail_filesize > '0' AND t.forumid = '" . $foruminfo['forumid'] . "' $order"); $thumbnails = ''; while($i < $max && $rows = $db->fetch_array($query)) { if($foruminfo['forumid']) { $i++; $array[$i][attachmentid] = $rows['attachmentid']; $array[$i][postid] = $rows['postid']; $array[$i][thumbnail] = $rows['thumbnail']; $array[$i][dateline] = $rows['dateline']; $array[$i][filename] = $rows['filename']; $array[$i][filesize] = $rows['filesize']; $array[$i][userid] = $rows['userid']; $array[$i][username] = $rows['username']; $array[$i][title] = $rows['title']; //$array[$i][title] = $rows['title']; } How can i use it? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|