An Admin on my site (AIM: M3Kamikaze) modified this hack to show which styles we are all using in showgroups.php (Forum Leaders Page).
He added it to showgroups.php by doing the following:
Open showgroups.php and find:
Code:
// get administrators & super moderators **********************************************************
$users = $DB_site->query("
SELECT
$locationfieldselect usergroup.title, user.username, user.userid, user.invisible, user.receivepm,
user.usergroupid, user.lastactivity, user.lastvisit
Add this after it on the same line
Code:
, style.title as styletitle
Now find:
Code:
// get moderators **********************************************************
$users = $DB_site->query("
SELECT
$locationfieldselect forum.forumid, forum.title AS forumtitle,
user.username, user.userid, user.invisible, user.receivepm, user.lastactivity, user.lastvisit
add this after it on the same line
Code:
, style.title as styletitle
Find:
Code:
LEFT JOIN user ON (usergroup.usergroupid = user.usergroupid)
Add this after it on the next line
Code:
LEFT JOIN style on (user.styleid = style.styleid)
Find:
Code:
LEFT JOIN user ON (user.userid = moderator.userid)
Add this after it on the next line
Code:
LEFT JOIN style on (user.styleid = style.styleid)
Go to your "Show Groups Templates [expand]" and add another column entitled "Style" or whatever. You'll have to fool around with doing this but eventually you'll get another column or whatever. Then just add:
somewhere in there.
This was tested & has worked on vBulletin v.2.2.6