How can i integrate this mod with quick register mod??
This is the php code of quick register with image verification
Code:
if (!$vbulletin->userinfo['userid'] AND $vbulletin->options['quickregister_active'] == 1)
{
if (($vbulletin->options['quickregister_imgver']) AND ($vbulletin->options['regimagecheck'] AND $vbulletin->options['regimagetype']))
{
require_once(DIR . '/includes/functions_regimage.php');
$imagehash = fetch_regimage_hash();
eval('$imagereg = "' . fetch_template('imagereg') . '";');
}
else
{
$imagereg = '';
}
$show['guest'] = true;
eval('$quickregister = "' . fetch_template('quick_register') . '";');
}