THANKS to "
pedroenf" for posting those fixes up, I was able to switch back to 2.0.2 because of those fixes.
For anyone who is intrested, I bypassed the drop down box in the archives so that now all the archive pages just show up by default like they did in the last version. That way people can get into their archives until VBDev gets it handled.
In the file `mgc_cb_evo.php`
#######
FIND
#######
PHP Code:
/* Hide warning notifications */
$where_clause .= " AND iswarning='0'";
####################
BELOW THAT REMOVE
####################
PHP Code:
/* Days limit */
$dlimit = $vbulletin->input->clean_gpc('r', 'dlimit', TYPE_INT);
if ($dlimit == 0)
{
$dlimit = 1;
}
if ($dlimit != -1)
{
$dateline_limit = TIMENOW - ($dlimit * 86400);
$where_clause .= " AND c.dateline>'" . $dateline_limit . "'";
}