Quote:
Originally Posted by sinisterpain
You can not remove files from the hack and expect it to work. What point system are you using? What version of vb? Explain in detail the problem you are having or what errors you get.
|
vBulletin 3.6.4, vbPlaza 1.5.8.
Using vbBux
In relation to the modification posted on page number 66, post number 976
My current code is:-
Code:
if ($newpost['postvbookieevent'])
{
$forceredirect = false;
$vbulletin->url = 'vbookie.php?' . $vbulletin->session->vars['sessionurl'] . "t=$newpost[threadid]&vbookieeventoptions=$newpost[vbookieeventoptions]&do=newevent";
}
It says's the correct code is:-
Code:
if ($newpost['postvbookieevent'])
{
$vbulletin->url = 'vbookie.php?' . $vbulletin->session->vars['sessionurl'] . "t=$newpost[threadid]&vbookieeventoptions=$newpost[vbookieeventoptions]&do=newevent";
eval(print_standard_redirect('redirect_postthanks_moderate', true, false));
}
If it change this (if that new code looks correct), what should I do after?
many thanks!