PDA

View Full Version : Remove vBulletin version from admin & mod control panels in 3.6.12?


niro82
11-20-2011, 08:59 PM
Hi,

Could someone tell me how to delete the vBulletin version number from the Admin & Mod control panels in vB 3.6.12?

Thanks...!

kh99
11-20-2011, 09:59 PM
I'm looking at the source for 3.8.3, but assuming it didn't change that much - edit admincp/index.php and look for the section that starts with

if ($_REQUEST['do'] == 'head')


line 150 or so. The mod panel is similar, except edit modcp/index.php.

niro82
11-20-2011, 10:22 PM
Hi Kevin, thanks for the help.

I searched if ($_REQUEST['do'] == 'head') , and a few variations of it, but I still can't find in the index.php file of the admin cp where I can edit the version number.

It's a bit of a puzzle at this point!

kh99
11-20-2011, 10:25 PM
In the admincp, it's

echo ADMIN_VERSION_VBULLETIN

In the modcp it's

echo $vbulletin->versionnumber;


both of those are in the middle of some code.