This solution is simple, however it requires that all of the template links to register.php be changed to register.php?do=register&agree=1
Any way to do it in register.php so that when a user requests register.php it displays the registration form?
--------------- Added [DATE]1200598388[/DATE] at [TIME]1200598388[/TIME] ---------------
I replaced this in register.php
PHP Code:
$_REQUEST['do'] = 'signup';
with
PHP Code:
$_REQUEST['do'] = 'register';
$_REQUEST['agree'] = '1';
Seems to work thus far - If I run into any issues I will post back.