Fixed subject first character capitalize
This commit is contained in:
parent
14ff0c439d
commit
eca95541e5
@ -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.
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user