when editing showthread.php mate this bit
Next find:
-----------------------------
$postarray["$post[postid]"] = $post;
-----------------------------
Add above:
-----------------------------
if ($vbulletin->options['showthread_preprocess_on'])
{
$prosts =& $post;
($hook = vBulletinHook::fetch_hook('showthread_preprocess') ) ? eval($hook) : false;
}
there is 2 instances of $postarray["$post[postid]"] = $post; when i search which one is it?
|