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
|
v0.33.19 26-Oct-2001
|
||||||
|
|
||||||
upgrade:
|
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
|
Change the file /opt/mbse/etc/issue like the example in the
|
||||||
subdirectory mbtask.
|
subdirectory mbtask.
|
||||||
Change the shell for user mbse to /opt/mbse/bin/mbnewusr
|
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
|
The upload virus file scan now also scans files that are not
|
||||||
known archives. Should catch macro viri and worms.
|
known archives. Should catch macro viri and worms.
|
||||||
The file CRC is now set when importing an uploaded file.
|
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:
|
mbnewusr:
|
||||||
New program, run by user bbs. This is only to register a new
|
New program, run by user bbs. This is only to register a new
|
||||||
|
@ -756,7 +756,7 @@ void Reply_Email(int IsReply)
|
|||||||
x = TRUE;
|
x = TRUE;
|
||||||
j = 0;
|
j = 0;
|
||||||
for (i = 0; i < strlen(to); i++) {
|
for (i = 0; i < strlen(to); i++) {
|
||||||
if (x) {
|
if (x && isalpha(to[i])) {
|
||||||
qin[j] = to[i];
|
qin[j] = to[i];
|
||||||
j++;
|
j++;
|
||||||
x = FALSE;
|
x = FALSE;
|
||||||
|
@ -1317,7 +1317,7 @@ void Reply_Msg(int IsReply)
|
|||||||
x = TRUE;
|
x = TRUE;
|
||||||
j = 0;
|
j = 0;
|
||||||
for (i = 0; i < strlen(to); i++) {
|
for (i = 0; i < strlen(to); i++) {
|
||||||
if (x) {
|
if (x && isalpha(to[i])) {
|
||||||
qin[j] = to[i];
|
qin[j] = to[i];
|
||||||
j++;
|
j++;
|
||||||
x = FALSE;
|
x = FALSE;
|
||||||
|
Reference in New Issue
Block a user