Skip to content
Snippets Groups Projects
Commit 11500f31 authored by nightfox's avatar nightfox
Browse files

Version 1.17 beta 56: When replying to a message, the reader will now strip...

Version 1.17 beta 56: When replying to a message, the reader will now strip any control characters that might be in the subject line.
parent 194d5988
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,10 @@
* field length), which shows the 'from' name with
* the from network in parenthesis. Updated the
* default message header to show that information.
* 2018-02-01 Eric Oulashin Version 1.17 beta 56
* When replying to a message, the reader will
* strip any control characters that might be in the
* subject line.
*/
 
// TODO: Add a command for closing a poll (only available to the user who opened the
......@@ -187,8 +191,8 @@ if (system.version_num < 31500)
}
 
// Reader version information
var READER_VERSION = "1.17 Beta 55";
var READER_DATE = "2018-01-27";
var READER_VERSION = "1.17 Beta 56";
var READER_DATE = "2018-02-01";
 
// Keyboard key codes for displaying on the screen
var UP_ARROW = ascii(24);
......@@ -8886,6 +8890,9 @@ function DigDistMsgReader_ReplyToMsg(pMsgHdr, pMsgText, pPrivate, pMsgIdx)
}
}
 
// Strip any control characters that the subject line might have
pMsgHdr.subject = strip_ctrl(pMsgHdr.subject);
// If the user is listing personal e-mail, then we need to call
// bbs.email() to leave a reply; otherwise, use bbs.post_msg().
if (this.readingPersonalEmail)
......
Digital Distortion Message Reader
Version 1.17 beta 55
Release date: 2018-01-27
Version 1.17 beta 56
Release date: 2018-02-01
by
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment