Skip to content
Snippets Groups Projects
Commit fc7e041f 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 31149a20
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -30,7 +30,7 @@ var sub=http_request.query.msg_sub; ...@@ -30,7 +30,7 @@ var sub=http_request.query.msg_sub;
if(grp=='E-Mail') if(grp=='E-Mail')
sub='mail'; sub='mail';
var s=-1; 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 msgbase = new MsgBase(sub);
var message=http_request.query.message; var message=http_request.query.message;
var m=parseInt(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