Quote:
Originally Posted by f4vn
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:
|
I just wanted to note that it is better to replace with this one below.
This will also
- will move the option in Moderation menu to the first place so there was no any need to select it from there
- not allow to show the option to move to Recycle bin inside the Recycle forum
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_tools = "' . fetch_template('vbrecycle_blank') . '";');
eval('$vbrecycle_fdt = "' . fetch_template('vbrecycle_fdt') . '";');
$vbulletin->templatecache['FORUMDISPLAY'] = str_replace(
array(
'<option value=\"deletethread\">$vbphrase[delete_threads]</option>',
'$navbar'
),
array(
'$vbrecycle_fdt <option value=\"deletethread\">$vbphrase[delete_threads]</option>',
'$navbar $vbrecycle_tools'
),
$vbulletin->templatecache['FORUMDISPLAY']
);
}
/////////////////////////////////
// End - FD - Edit Template //
///////////////////////////////