The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
||||
|
||||
![]()
Try this... in search.php replace:
Code:
if ($action=="finduser") { // get allowable forums: $forumsql=getallforumsql(); // get user: $usersql=" AND post.userid='$userid'"; $wheresql="1=1".$forumsql.$usersql; Code:
if ($action=="finduser") { // get allowable forums: $forumsql=getallforumsql(); if (isset($forumid)) { $forums=$DB_site->query("SELECT forumid FROM forum WHERE INSTR(CONCAT(',',parentlist,','),',".addslashes($forumid).",')>0"); $forumsql.=" AND forumid IN (0"; while ($forum=$DB_site->fetch_array($forums)) { $forumsql.=",$forum[forumid]"; } $forumsql.=") "; } // get user: $usersql=" AND post.userid='$userid'"; // get thread: if (isset($threadid)) { $threadsql=" AND post.threadid='$threadid'"; } else { $threadsql=''; } $wheresql="1=1".$forumsql.$threadsql.$usersql; |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|