Quote:
Originally Posted by dartho
no - I had the issue on the 3 admincp files (wt_export.php, wt_wq.php & wt_wt.php).
I needed to change
Code:
$wt_hf = unserialize($vbulletin->wt_hf);
$wt_themes = unserialize($vbulletin->wt_themes);
to
Code:
$wt_hf = @unserialize($vbulletin->wt_hf);
$wt_themes = @unserialize($vbulletin->wt_themes);
in each of the files.
|
ok thanks, I updated the hack zip file.