Quote:
Originally Posted by Sayid
|
My friend helped me fix it so I will show you how to fix

.
Find plugin *vBRecycle v3* - Forum Display - Edit Template end replace with:
HTML Code:
/////////////////////////////////
// Start - FD - Edit Template //
///////////////////////////////
if ($foruminfo[forumid]) $vbr_ifr = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "forum WHERE forumid = $foruminfo[forumid]");
if ($vbr_ifr['recycle']==1) {
$vbr_id=$vbr_ifr['forumid'];
eval('$vbrecycle_tools = "' . fetch_template('vbrecycle_tools') . '";');
} else {
eval('$vbrecycle_fdt = "' . fetch_template('vbrecycle_fdt') . '";');
eval('$vbrecycle_tools = "' . fetch_template('vbrecycle_blank') . '";');
}
$vbulletin->templatecache['FORUMDISPLAY'] = str_replace(
array(
'$vbphrase[delete_threads]</option>',
'$navbar'
),
array(
'$vbphrase[delete_threads]</option> $vbrecycle_fdt',
'$navbar $vbrecycle_tools'
),
$vbulletin->templatecache['FORUMDISPLAY']
);
/////////////////////////////////
// End - FD - Edit Template //
///////////////////////////////
Click save.
Done !
It is working well on my forum !