MyBB Community Forums

Full Version: Change posthash - which files?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If I wanted to change how the posthash value is generated (all the files that has anything to do with the posthash value), which files should I be looking in?

Thanks.
newthread.php and newreply.php
	    mt_srand ((double) microtime() * 1000000);
	    $posthash = md5($mybb->user['uid'].mt_rand());

Chris
Thanks! Though, I found those lines in the showthread.php file as well. Is that for the Quick Reply feature?
Ah yes, sorry - they are in showthread.php too.