]> code.citadel.org Git - citadel.git/commitdiff
* Altered the logic which determines whether to display a "Post message"
authorArt Cancro <ajc@citadel.org>
Tue, 6 Sep 2005 14:44:28 +0000 (14:44 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 6 Sep 2005 14:44:28 +0000 (14:44 +0000)
  or "Send message" button on the message entry screen.

webcit/ChangeLog
webcit/messages.c

index 975ba175b651c31ffbdc92e7ad0b1ed191907f2c..86843c2e2fa5d7af4ebb7b9e649f6db646f3460e 100644 (file)
@@ -1,4 +1,8 @@
 $Log$
+Revision 621.33  2005/09/06 14:44:28  ajc
+* Altered the logic which determines whether to display a "Post message"
+  or "Send message" button on the message entry screen.
+
 Revision 621.32  2005/09/01 03:54:32  ajc
 * The "prompt for recipient" screen is now gone.  When the user is posting
   from a room requiring a recipient, a "To:" line now appears above the
@@ -2915,3 +2919,4 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 06c489b0140622294c0c892f36f1252f2899b4ed..eda02b0af575eacd4c1ee50d5928bc79a229d851 100644 (file)
@@ -2089,7 +2089,7 @@ void display_enter(void)
        wprintf("\" size=50 maxlength=70></td><td>\n");
 
        wprintf("<input type=\"submit\" name=\"send_button\" value=\"");
-       if (strlen(bstr("recp")) > 0) {
+       if (recipient_required) {
                wprintf(_("Send message"));
        } else {
                wprintf(_("Post message"));