move beginbox & endbox to box_* so we can tidy up our static/t/ directory a little...
[citadel.git] / webcit / sysmsgs.c
index 6c0ce1d04ae2d7241b135c0859cb2eb234063084..aae67d9304b26604fdb627f42f019cdfa8c0796a 100644 (file)
@@ -47,9 +47,9 @@ void display_edit(char *description, char *check_cmd,
                output_headers(1, 1, 0, 0, 0, 0);
        }
 
-       do_template("beginbox_1");
+       do_template("box_begin_1");
        StrBufAppendPrintf (WC->WBuf, _("Edit %s"), description);
-       do_template("beginbox_2");
+       do_template("box_begin_2");
 
        wc_printf(_("Enter %s below. Text is formatted to the reader's browser."
                " A newline is forced by preceding the next line by a blank."), description);
@@ -68,7 +68,7 @@ void display_edit(char *description, char *check_cmd,
        wc_printf("<input type=\"submit\" name=\"cancel_button\" value=\"%s\"><br>\n", _("Cancel"));
        wc_printf("</div></form>\n");
 
-       do_template("endbox");
+       do_template("box_end");
        wDumpContent(1);
 }