Fixed quote initials with extra space in it
This commit is contained in:
parent
358424d169
commit
2e2208bb97
@ -4215,6 +4215,8 @@ v0.33.18 27-Jul-2001
|
||||
v0.33.19 26-Oct-2001
|
||||
|
||||
upgrade:
|
||||
Announce any new files you might have. If you run mbtoberep
|
||||
it should display no data anymore.
|
||||
Change the file /opt/mbse/etc/issue like the example in the
|
||||
subdirectory mbtask.
|
||||
Change the shell for user mbse to /opt/mbse/bin/mbnewusr
|
||||
@ -4313,6 +4315,9 @@ v0.33.19 26-Oct-2001
|
||||
The upload virus file scan now also scans files that are not
|
||||
known archives. Should catch macro viri and worms.
|
||||
The file CRC is now set when importing an uploaded file.
|
||||
Fixed quote initials of the original user containing a space
|
||||
character if there was a dot followed by a space in the users
|
||||
name.
|
||||
|
||||
mbnewusr:
|
||||
New program, run by user bbs. This is only to register a new
|
||||
|
@ -756,7 +756,7 @@ void Reply_Email(int IsReply)
|
||||
x = TRUE;
|
||||
j = 0;
|
||||
for (i = 0; i < strlen(to); i++) {
|
||||
if (x) {
|
||||
if (x && isalpha(to[i])) {
|
||||
qin[j] = to[i];
|
||||
j++;
|
||||
x = FALSE;
|
||||
|
@ -1317,7 +1317,7 @@ void Reply_Msg(int IsReply)
|
||||
x = TRUE;
|
||||
j = 0;
|
||||
for (i = 0; i < strlen(to); i++) {
|
||||
if (x) {
|
||||
if (x && isalpha(to[i])) {
|
||||
qin[j] = to[i];
|
||||
j++;
|
||||
x = FALSE;
|
||||
|
Reference in New Issue
Block a user