Niels wrote:Niels wrote in the sticky:
This mod simply add a template more, with the same syntax as the original profile_add_body.tpl
this gives you the abillity to shorten the registration page, and still keep the ordenary "edit profile" page
than where do I change the link of the 'register'-button .. so it points to the (shortened) register-page .. and not the (full) profile-page?
is it in /profile.php ?
- Code: Select all
else if ( $mode == 'editprofile' || $mode == 'register' )
{
if ( !$userdata['session_logged_in'] && $mode == 'editprofile' )
{
redirect(append_sid("login.$phpEx?redirect=profile.$phpEx&mode=editprofile", true));
}
include($phpbb_root_path . 'includes/usercp_register.'.$phpEx);
exit;
}
the line with 'include' ... is that the 'else'-statement(of the inner 'if')?
if so.. can somebody explain what's written in that line..
thx in advance

