Форуми / Cotonti / Support / A Couple Qustions

Kilandor
#12224 08.05.2009 05:12
The redirect is located in common.php starting on line 299

However in users.php you could change
if(isset($_GET['m']) && $_GET['m'] == 'auth')
{
	define('SED_AUTH', TRUE);
}

To

if(isset($_GET['m']) && ($_GET['m'] == 'auth' || $_GET['m'] == 'register'))
{
	define('SED_AUTH', TRUE);
}

This would allow the registration page to work.