Fixed subject first character capitalize

This commit is contained in:
Michiel Broek 2003-07-11 20:28:36 +00:00
parent 14ff0c439d
commit eca95541e5
3 changed files with 184 additions and 186 deletions

View File

@ -47,6 +47,8 @@ v0.37.4 10-May-2003
mbsebbs:
Increased internal message buffer size to 700 lines.
Fullscreen editor code cleanup, debug messages removed.
When entering a message, the first character of the subject
line was capitalized.
mbsetup:
In menu 1.14 added a switch to turn MD5 crypted passwords off.

View File

@ -743,7 +743,6 @@ void Reply_Email(int IsReply)
if (strlen(subj))
strcpy(Msg.Subject, subj);
tlf(Msg.Subject);
Msg.Private = TRUE;
Enter(1);
@ -873,7 +872,6 @@ void Write_Email(void)
fflush(stdout);
alarm_on();
GetstrP(Msg.Subject, 65, 0);
tlf(Msg.Subject);
if((strcmp(Msg.Subject, "")) == 0) {
Enter(1);

View File

@ -5,7 +5,7 @@
* Todo ..................: Implement message groups.
*
*****************************************************************************
* Copyright (C) 1997-2002
* Copyright (C) 1997-2003
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
@ -565,7 +565,6 @@ void Post_Msg()
fflush(stdout);
alarm_on();
GetstrP(Msg.Subject, 65, 0);
tlf(Msg.Subject);
if ((strcmp(Msg.Subject, "")) == 0) {
Enter(1);
@ -1379,7 +1378,6 @@ void Reply_Msg(int IsReply)
if (strlen(subj))
strcpy(Msg.Subject, subj);
tlf(Msg.Subject);
Msg.Private = IsPrivate();
Enter(1);