* move some more vars from the session context to strbuf (the use of StrBufAppendTemp...
[citadel.git] / webcit / sysmsgs.c
index 7db7f4f7f7da7106b75fd3966a26ce05bb655770..00b4181d246d12bf97eae784d812da38fb90f1ae 100644 (file)
@@ -33,7 +33,7 @@ void display_edit(char *description, char *check_cmd,
        }
 
        svprintf(HKEY("BOXTITLE"), WCS_STRING, _("Edit %s"), description);
-       do_template("beginbox", NULL);
+       do_template("beginboxx", NULL);
 
        wprintf(_("Enter %s below. Text is formatted to the reader's browser."
                " A newline is forced by preceding the next line by a blank."), description);
@@ -101,7 +101,7 @@ void editinfo(void) {save_edit(_("Room info"), "EINF 1", 1);}
 void display_editbio(void) {
        char buf[SIZ];
 
-       snprintf(buf, SIZ, "RBIO %s", WC->wc_fullname);
+       snprintf(buf, SIZ, "RBIO %s", ChrPtr(WC->wc_fullname));
        display_edit(_("Your bio"), "NOOP", buf, "editbio", 3);
 }
 void editbio(void) { save_edit(_("Your bio"), "EBIO", 0); }