View Full Version : Changing Post Count to "????"
Mike Cout
01-23-2003, 11:31 PM
Hi,
I have seen other forum's admins have there post counts set to ????, how can i do this with vbulletin 2.9.
Thank You!
-Mike
Logician
01-24-2003, 06:23 AM
edit index.php, find:
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
After that add:
$countposts['posts']=$countposts['posts']+100000;
(This will add 100,000 to real count)
For threads:
find:
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
After that add:
$countthreads['threads']=$countthreads['threads']+100000;
Mike Cout
01-24-2003, 09:49 AM
thanks alot, ill try it alot later tonite
Domenico
01-24-2003, 10:41 AM
Question: Why would anyone want to do this?
Mike Cout
01-24-2003, 07:48 PM
what i want to do is make the post count actually say "????" for just a couple users.. not all of them
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.