]> code.citadel.org Git - citadel.git/commitdiff
two corrections of errors which I made earlier:
authorThierry Pasqualier <thierry@uncensored.citadel.org>
Fri, 25 May 2007 18:35:26 +0000 (18:35 +0000)
committerThierry Pasqualier <thierry@uncensored.citadel.org>
Fri, 25 May 2007 18:35:26 +0000 (18:35 +0000)
- fix HTML for attachment edit message
- webcit version to 7.10

webcit/messages.c
webcit/webcit.h

index 7d1ace54cf65283ba65760dcb0fc2a49ff4cd093..94267b178945131efeff9c445bfbd608e14138da 100644 (file)
@@ -3138,7 +3138,7 @@ void display_enter(void)
        do_template("richedit");
 
        /** Enumerate any attachments which are already in place... */
-       wprintf("<div style=\"float: left; \"><img src=\"static/diskette_24x.gif\" border=0 ");
+       wprintf("<div><img src=\"static/diskette_24x.gif\" border=0 ");
        wprintf(_("Attachments:"));
        wprintf(" ");
        wprintf("<select name=\"which_attachment\" size=1>");
@@ -3150,7 +3150,7 @@ void display_enter(void)
                /* wprintf(" (%s, %d bytes)",att->content_type,att->length); */
                wprintf("</option>\n");
        }
-       wprintf("</select><br />");
+       wprintf("</select>");
 
        /** Now offer the ability to attach additional files... */
        wprintf("&nbsp;&nbsp;&nbsp;");
index 4196fb58705dd2940eebedba713bccd7a0547944..c273800b2f68022af27a40bca725a1c926f89249 100644 (file)
@@ -126,7 +126,7 @@ extern locale_t wc_locales[];
 #define DEVELOPER_ID           0
 #define CLIENT_ID              4
 #define CLIENT_VERSION         710             /* This version of WebCit */
-#define MINIMUM_CIT_VERSION    700             /* min required Citadel ver. */
+#define MINIMUM_CIT_VERSION    710             /* min required Citadel ver. */
 #define DEFAULT_HOST           "localhost"     /* Default Citadel server */
 #define DEFAULT_PORT           "504"
 #define LB                     (1)             /* Internal escape chars */