2010-02-16, 07:53 PM
(2010-01-30, 06:15 PM)x-Treme Wrote: The {$download_table} remains in the newthread template when I uninstall. I have to manually remove it.
If not, if I re-install it, the table appears twice.
Easy to fix.
In download_system.php file search for:
function download_system_deactivate()
{
require MYBB_ROOT.'/inc/adminfunctions_templates.php';
find_replace_templatesets("postbit", '#'.preg_quote("{\$post['download_system']}").'#', '');
find_replace_templatesets("postbit_classic", '#'.preg_quote("{\$post['download_system']}").'#', '');
find_replace_templatesets("newthread", '#'.preg_quote("{\$download_table}").'#', '');
find_replace_templatesets("editpost", '#'.preg_quote("{\$download_table}").'#', '');
}
Replace with
function download_system_deactivate()
{
require MYBB_ROOT.'/inc/adminfunctions_templates.php';
find_replace_templatesets("postbit", '#'.preg_quote("{\$post['download_system']}").'#', '',0);
find_replace_templatesets("postbit_classic", '#'.preg_quote("{\$post['download_system']}").'#', '',0);
find_replace_templatesets("newthread", '#'.preg_quote("{\$download_table}").'#', '',0);
find_replace_templatesets("editpost", '#'.preg_quote("{\$download_table}").'#', '',0);
}