Thanks,
make the following changes and the Hack run on a vBulletin 3.7
bbcodes_impex.php
find: (line 36)
PHP Code:
foreach ($bbcodescache AS $this) {
if ($_REQUEST['bbcodeid'] == $this['bbcodeid']) {
$bbcode = $this;
}
}
replace with:
PHP Code:
foreach ($bbcodescache AS $zeile) {
if ($_REQUEST['bbcodeid'] == $zeile['bbcodeid']) {
$bbcode = $zeile;
}
}
find: (line 200)
PHP Code:
else {
//check existing
foreach ($bbcodescache AS $this) {
if ($bbcodetag == $this['bbcodetag'] && $twoparams == $this['twoparams']) {ieb_print_stop_back("The bbcode [$bbcodetag] already exists.");}
}
replace with:
PHP Code:
else {
//check existing
foreach ($bbcodescache AS $zeile) {
if ($bbcodetag == $zeile['bbcodetag'] && $twoparams == $zeile['twoparams']) {ieb_print_stop_back("The bbcode [$bbcodetag] already exists.");}
}
find: (line 44)
PHP Code:
$xml = new XMLexporter();
replace with:
PHP Code:
$xml = new XMLexporter($vbulletin);
That's the end of it.
Now the hack run on vBulletin 3.6.x and 3.7.x.
Greeting Indy