]> code.citadel.org Git - citadel.git/commitdiff
* Summary page: three columns are now all the same width
authorArt Cancro <ajc@citadel.org>
Sun, 5 Jan 2003 21:02:14 +0000 (21:02 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 5 Jan 2003 21:02:14 +0000 (21:02 +0000)
webcit/ChangeLog
webcit/summary.c

index aa86f38411273064feeb1863bdebbf91baac6d9b..2c50a03d54f3ec407f27e18f27b4362c5f23ca57 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 400.78  2003/01/05 21:02:14  ajc
+* Summary page: three columns are now all the same width
+
 Revision 400.77  2003/01/05 20:56:05  ajc
 * minor fix for previous checkin
 
@@ -1220,4 +1223,3 @@ 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 870b938fc58efc42e4424c609d623d143706f3c4..f5a4896b72220935f7da0e051be76b376334a106 100644 (file)
@@ -252,13 +252,13 @@ void summary(void) {
        /*
         * Column One
         */
-       wprintf("<TD>");
+       wprintf("<TD WIDTH=33%%>");
        wholist_section();
 
        /*
         * Column Two
         */
-       wprintf("</TD><TD>");
+       wprintf("</TD><TD WIDTH=33%%>");
        server_info_section();
        wprintf("<BR><BR>");
        tasks_section();
@@ -266,7 +266,7 @@ void summary(void) {
        /*
         * Column Three
         */
-       wprintf("</TD><TD>");
+       wprintf("</TD><TD WIDTH=33%%>");
        new_messages_section();
        wprintf("<BR><BR>");
        calendar_section();