Controller
New Member
I posted the same thread on Gysn.org, I will be offering support in this thread, but I dont think there's a big difficulty in doing this.
Upgrade from 3.7 to 3.8 with vbadvanced works. But the installation from a clean 3.8 doesn't.
This installation file will allow you to install vBadvanced on 3.8
The file contains no backdoors, but if you dont find it trust worthy you can get your own clean from advanced.com or anywhere you'd like.
on line 23
Change:
to:
Next; on line 35
Change:
to:
This is a simple tweak. don't ask me for support through pm
Upgrade from 3.7 to 3.8 with vbadvanced works. But the installation from a clean 3.8 doesn't.
This installation file will allow you to install vBadvanced on 3.8
The file contains no backdoors, but if you dont find it trust worthy you can get your own clean from advanced.com or anywhere you'd like.
on line 23
Change:
Code:
define('IS_VB_37', (substr($vbulletin->options['templateversion'], 0, 3) == 3.7) ? true : false);
Code:
define('IS_VB_38', (substr($vbulletin->options['templateversion'], 0, 3) == 3.8) ? true : false);
Change:
Code:
if (!in_array(substr($vbulletin->options['templateversion'], 0, 3), array(3.6, 3.7)))
to:
Code:
if (!in_array(substr($vbulletin->options['templateversion'], 0, 3), array(3.6, 3.7, 3.8)))