]> code.citadel.org Git - citadel.git/commitdiff
accept-charset="UTF-8" in form declaration for enter message screen
authorArt Cancro <ajc@citadel.org>
Sun, 29 Jan 2006 04:33:23 +0000 (04:33 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 29 Jan 2006 04:33:23 +0000 (04:33 +0000)
webcit/ChangeLog
webcit/messages.c

index 24fe2863c149eec435a7a6504be563ac0bc545f8..092e54bd8403a5b633c88bca2f4ed5abe84c0e83 100644 (file)
@@ -1,5 +1,8 @@
 $Id$
 
+Sat Jan 28 23:32:50 EST 2006 ajc
+* accept-charset="UTF-8" in form declaration for enter message screen
+
 Fri Jan 27 23:52:46 EST 2006 ajc
 * All month names and weekday names are now sourced from localized strings.
 
index b4657c9b5bbbd4e7a74877869cd3ed68ed411292..17d10c062706336e48a0ad526aa6ac7e79a83068 100644 (file)
@@ -2719,8 +2719,11 @@ void display_enter(void)
        stresc(&buf[strlen(buf)], WC->wc_roomname, 1, 1);
 
        /** begin message entry screen */
-       wprintf("<form enctype=\"multipart/form-data\" "
-               "method=\"POST\" action=\"post\" "
+       wprintf("<form "
+               "enctype=\"multipart/form-data\" "
+               "method=\"POST\" "
+               "accept-charset=\"UTF-8\" "
+               "action=\"post\" "
                "name=\"enterform\""
                ">\n");
        wprintf("<input type=\"hidden\" name=\"postseq\" value=\"%ld\">\n", now);