I wanted to upgrade Blog mod from 2.0.2 to 2.0.3 I already have two licenses pointing to same website one is 4.0 publishing suite another one is 3.8 + blog 2.0.2 I'm not going to pay for the upgrade the one with blog, that would cost like buying a third license for the same website. Insane, but this is how wonderfully vbulletin system and support works. I'm not going to even to post this on vb.com cause I'm sure they will not help as always.
Can anyone advice me how to patch it please?
I think I need to change:
Code:
foreach ($blogstats AS $key => $value)
{
$blogstats["$key"] = vb_number_format($value);
}
to this in functions file
Code:
foreach ($blogstats AS $key => $value)
{
if($key != "lastentry"){$blogstats["$key"] = vb_number_format($value);}
}
and to replace all instances of
Code:
error_reporting(E_ALL & ~E_NOTICE);
to
Code:
error_reporting(E_ALL & ~E_NOTICE & ~8192);
Can anyone confirm I'm not missing anything?