New Joe |
09-04-2009 01:29 PM |
Quote:
Originally Posted by NolimitMike
(Post 1873614)
I have a problem with mine it works up until you hit "Submit Post" it does not bring up the vbookie screen. Just takes me right to the post.
|
The posting of vbookie events in 3.6 or higher (3,8 works fine with after the edit as well) is broken because the hook used has moved.
To fix this problem, the following plugin must be edited ;
vBookie: Redirect to vbookie.php when posting new Event
Replace the plugin code with this ;
PHP Code:
Quote:
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
|
After that then disable the mod then re able it, that should make it work.
|