
08-28-2006, 06:13 PM
|
 |
|
|
Join Date: Mar 2006
Location: Montana
Posts: 1,169
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Eagle Creek
Where do we find Paul's code?
|
vBookie & vb 3.6
Quote:
Originally Posted by Paul M
vBookie & 3.6
The posting of vbookie events in 3.6 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:
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));
}
|
|