]> code.citadel.org Git - citadel.git/blobdiff - webcit/summary.c
* Non breaking spaces in summary page box titles
[citadel.git] / webcit / summary.c
index 99c8f246d401d744780591d005bf2ce3c3e8de3b..9b6555e2d5319457d6154c1a86fa5067e55fcd90 100644 (file)
@@ -56,7 +56,7 @@ void output_date(void) {
  * Dummy section
  */
 void dummy_section(void) {
-       svprintf("BOXTITLE", WCS_STRING, "(dummy section)");
+       svprintf("BOXTITLE", WCS_STRING, "(dummy section)");
        do_template("beginbox");
        wprintf("(nothing)");
        do_template("endbox");
@@ -110,7 +110,7 @@ void wholist_section(void) {
        char buf[SIZ];
        char user[SIZ];
 
-       svprintf("BOXTITLE", WCS_STRING, "Who's online now");
+       svprintf("BOXTITLE", WCS_STRING, "Who's online now");
        do_template("beginbox");
        serv_puts("RWHO");
        serv_gets(buf);
@@ -160,7 +160,7 @@ void calendar_section(void) {
        int num_msgs = 0;
        int i;
 
-       svprintf("BOXTITLE", WCS_STRING, "Today on your calendar");
+       svprintf("BOXTITLE", WCS_STRING, "Today on your calendar");
        do_template("beginbox");
 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
        gotoroom("Calendar", 0);
@@ -189,7 +189,7 @@ void calendar_section(void) {
  * Server info section (fluff, really)
  */
 void server_info_section(void) {
-       svprintf("BOXTITLE", WCS_STRING, "About this server");
+       svprintf("BOXTITLE", WCS_STRING, "About this server");
        do_template("beginbox");
        wprintf("You are connected to ");
        escputs(serv_info.serv_humannode);