Quote:
Originally Posted by X-Files
This is a major bug in this program and it has not been addressed! This was posted in October. We just found it today after the upgrade to vB 3.5.3. This was not happening in the old version. Could someone please help us out. We need this system to work because the points are used to be able to purchase items.
Thanks.
|
Fixed it myself.
functions_newpost.php
Change:
PHP Code:
($hook = vBulletinHook::fetch_hook('newpost_process')) ? eval($hook) : false;
To:
PHP Code:
if (! $post['preview']){
($hook = vBulletinHook::fetch_hook('newpost_process')) ? eval($hook) : false;
}