]> code.citadel.org Git - citadel.git/blobdiff - webcit/userlist.c
Added the id #room_ROOMNAME to the body tag, this enables us to use some conditionals...
[citadel.git] / webcit / userlist.c
index 2f605adccf23a0b7fe504de4ad2fd7666dd6a0a3..d5b33238be46ad093b40fb837da1a7be987e3355 100644 (file)
@@ -46,7 +46,7 @@ void userlist(void)
        serv_puts("LIST");
        serv_getln(buf, sizeof buf);
        if (buf[0] != '1') {
-               wc_printf("<em>%s</em><br />\n", &buf[4]);
+               wc_printf("<em>%s</em><br>\n", &buf[4]);
                goto DONE;
        }
 
@@ -113,13 +113,13 @@ void showuser(void)
 
        output_headers(1, 1, 2, 0, 0, 0);
        wc_printf("<div id=\"banner\">\n");
-       wc_printf("<img src=\"static/usermanag_48x.gif\">");
+       wc_printf("<img src=\"static/webcit_icons/essen/32x32/account.png\">");
         wc_printf("<h1>");
        wc_printf(_("User profile"));
         wc_printf("</h1>");
         wc_printf("</div>");
 
-        wc_printf("<div id=\"content\" class=\"service\">\n");
+        wc_printf("<div id=\"content\" class=\"service bio\">\n");
 
        wc_printf("<table class=\"userlist_background\"><tr><td>\n");
 
@@ -147,10 +147,10 @@ void showuser(void)
        if (buf[0] == '1') {
                fmout("JUSTIFY");
        }
-       wc_printf("<br /><a href=\"display_page?recp=");
+       wc_printf("<br><a href=\"display_page?recp=");
        urlescputs(who);
        wc_printf("\">"
-               "<img src=\"static/citadelchat_24x.gif\" "
+               "<img src=\"static/webcit_icons/essen/16x16/chat.png\" "
                "align=middle border=0>&nbsp;&nbsp;");
        snprintf(buf, sizeof buf, _("Click here to send an instant message to %s"), who);
        escputs(buf);