2.0.2
Nothing to worry about, just removed some code from the instructions that's for my other hack! Here's the snippet I removed:
Code:
====================================
To create the new hook:
Open /includes/xml/hooks_vbulletin.xml
FIND:
<hook>member_complete</hook>
AFTER IT ADD:
<hook>member_extras</hook>
This creates a new hook location:
Hook Location: vBulletin: Member's Profile -> member_extras (see? I told you it would create a new hook!)
Now, we have to place it in the file.
Open member.php
FIND:
// END CUSTOM PROFILE FIELDS
// *************************
AFTER IT ADD:
($hook = vBulletinHook::fetch_hook('member_extras')) ? eval($hook) : false;
====================================