Sorry to tell you this...
There is an obscure bug when this hack is installed, a user forgets his password and he requests a new one. One ends up with a PHP parse error.
The bug is as follows:
VBulletin uses $a as a global variable in the reset password code (around line 174 of member.php). This messes up use of $a as the command argument in advanced_templates.
Solution: use a variable in advanced_templates which does not have global scope. (e.g. replace $a by $basictemplate)
|