CMS MADE SIMPLE FORGE

Self Registration

 

[#1851] sendanotheremail link broken Ver 1.1.1 of SelfRegistration

avatar
Created By: John Pelletreau (divsys)
Date Submitted: Tue Oct 02 23:42:09 -0400 2007

Assigned To:
Version: None
CMSMS Version: None
Severity: Major
Resolution: None
State: Open
Summary:
sendanotheremail link broken Ver 1.1.1 of SelfRegistration
Detailed Description:
New install of SelfRegistration Ver 1.1.1 from XML or .tar files w/FEU V 1.20,
CMS Mailer V 1.73.11

Selfreg allows new users to create and self register  if there are no email
problems, but the "Click Here" link to force a resend of email registration code
does not creat the required form to allow the user to re-enter their ID.

Tracked to error in "...modules/SelfRegistration/action.reguser.php"
at line 412:

$this->_UserDisplayLostRegEmailForm( $id, $params, $returnid );

should be:

_UserDisplayLostRegEmailForm( $this, $id, $params, $returnid );

similarly line 415 should be:

_DisplayErrorPage( $this, $id, '', $returnid, $this->Lang('error_invalidmode')
);


History

Comments
avatar
Date: 2007-10-07 12:10
Posted By: Brian Rock (walkere)

I encountered the same problem, but found the function calls in
"action.default.php" not "action.reguser.php."

Making the changes fixed the problem, though.
      
avatar
Date: 2007-10-08 22:41
Posted By: John Pelletreau (divsys)

You're absolutely correct, my bad

the source file in question is "...modules/SelfRegistration/action.default.php"

Thanks