Kilandor |
|
---|---|
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. |