The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
how do i find out who's tagging a thread?
guys i've been facing some tag abuse. right now i see no way to see who tagged a thread. any way to find this out?
|
#2
|
||||
|
||||
One of the "tag" tables in the database keeps this information.
|
#3
|
|||
|
|||
seems like its two - there's one table that just has tag id and the content, another that has the tag id and member id. which means to find out who tagged it i need to find the correct tagid from the first table, link it to the member id in the 2nd table, and finally link the memberid to username either within the forums or using the database.
there must be an easier way?! |
#4
|
||||
|
||||
[sql]SELECT u.username
FROM tag AS tag LEFT JOIN tagthread AS tagt ON (tagt.tagid = tag.tagid) LEFT JOIN user AS u ON (tagt.userid = u.userid) WHERE tag.tagtext = 'X' AND tagt.threadid = 1[/sql] Replace 1 with the thread id and X with the tag text. |
#5
|
|||
|
|||
so there really isn't some simple plugin / vbulletin option that allows this?? sql queries can only be run by the admin, not by moderators as far as i know...
|
#6
|
||||
|
||||
It's already there in vB!
Read thru this thread at vB.com: http://www.vbulletin.com/forum/showthread.php?t=277441 Click a tagged thread, click on Edit Tags, mouse over the current tag(s). |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|