Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

GM 2.0.1 - Lost Password BUGs

Quote Reply
GM 2.0.1 - Lost Password BUGs
User -> Lost Password

The simple template generates 2 errors:

1. 'unknown tag title' in the header area of the pages.
2. If you don't enter a username in the reminder field and press submit, it returns the user to the login page and displays 'FUNCERR' - the language variable name instead of an error message. I think it should probably be returning the reminder screen again and with the error message there.

Any possibility of a quick fix for this one? I was hoping to make this one the one I went live with. :(

Cheers,
Regan.

Quote Reply
Re: GM 2.0.1 - Lost Password BUGs In reply to
Hi,

This is a bug in login.cgi. I will update the download with the fix in a few minutes.

To fix this your self:
Open up login.cgi and add the following lines:
Code:
my $t = GMail->template_set;
$CFG->load_template_set($t);
Right before:
Code:
my $ret = GMail::NoAuth->parse_params or return;
Also a little bit further down you will see:
Code:
# Find out which template set we are on.
my $t = GMail->template_set;
Remove the word 'my'.

Cheers,

Scott


Quote Reply
Re: GM 2.0.1 - Lost Password BUGs In reply to
Excellent! Thanks Scott! I'll give this a go.

Regan.


Quote Reply
Re: GM 2.0.1 - Lost Password BUGs In reply to
Yip, that worked a treat!

Thanks!

Regan.