]> code.citadel.org Git - citadel.git/blobdiff - webcit/summary.c
* collect sender / read / unread information for calendar items
[citadel.git] / webcit / summary.c
index 7b41eacdc2e5f79f0de8768e6308c5bf83aa7484..06487fb9f94716bb44534da086f4070793ac6c38 100644 (file)
@@ -140,7 +140,7 @@ void tasks_section(void) {
        }
        else {
                for (i=0; i<num_msgs; ++i) {
-                       display_task(WC->msgarr[i]);
+                       display_task(WC->msgarr[i], 0);
                }
        }
 
@@ -179,7 +179,7 @@ void calendar_section(void) {
        }
        else {
                for (i=0; i<num_msgs; ++i) {
-                       display_calendar(WC->msgarr[i]);
+                       display_calendar(WC->msgarr[i], 0);
                }
                calendar_summary_view();
        }
@@ -201,7 +201,7 @@ void server_info_section(void) {
                _("You are connected to %s, running %s with %s, and located in %s.  Your system administrator is %s."),
                serv_info.serv_humannode,
                serv_info.serv_software,
-               SERVER,
+               PACKAGE_STRING,
                serv_info.serv_bbs_city,
                serv_info.serv_sysadm);
        escputs(message);
@@ -223,7 +223,8 @@ void summary_inner_div(void) {
         */
 
        wprintf("<div class=\"fix_scrollbar_bug\">"
-               "<table border=0 width=100%%><tr valign=top>");
+               "<table width=\"100%%\" cellspacing=\"10px\" cellpadding=\"0\">"
+               "<tr valign=top>");
 
        /**
         * Column One
@@ -264,8 +265,6 @@ void summary_inner_div(void) {
        wprintf("</div></div></div>");
        wprintf("</td>");
 
-       wprintf("</tr><tr valign=top>");
-       wprintf("<td colspan=3><br/></td>");
        wprintf("</tr><tr valign=top>");
 
        /**