Skip to content
Snippets Groups Projects
Commit c8fe33de authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix recently-introduced issue reading the 'mail' base.

Reported by AL@TRMB.
parent 4c62fff5
Branches
Tags
No related merge requests found
......@@ -30,7 +30,7 @@ var sub=http_request.query.msg_sub;
if(grp=='E-Mail')
sub='mail';
var s=-1;
if(sub != undefined && msg_area.sub[sub] != undefined)
if(sub == 'mail' || msg_area.sub[sub] != undefined)
var msgbase = new MsgBase(sub);
var message=http_request.query.message;
var m=parseInt(http_request.query.message);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment