X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fsysmsgs.c;h=f73fbf971fd9b91382fd0c5a1f111664cec2974c;hp=99f84533ebad507d4b8335a1d21c41ebd43ea5e5;hb=c6aec42f213ec284e34648f3d69bcf927dccddb1;hpb=7beff529e758f6f0706e733901824c63bcac6d19 diff --git a/webcit/sysmsgs.c b/webcit/sysmsgs.c index 99f84533e..f73fbf971 100644 --- a/webcit/sysmsgs.c +++ b/webcit/sysmsgs.c @@ -1,3 +1,4 @@ + /* * Copyright (c) 1996-2012 by the citadel.org team * @@ -18,8 +19,7 @@ * enter_cmd which command to enter at the citadel server??? * regoto should we go to that room again after executing that command? */ -void save_edit(char *description, char *enter_cmd, int regoto) -{ +void save_edit(char *description, char *enter_cmd, int regoto) { StrBuf *Line; const StrBuf *templ; @@ -36,7 +36,7 @@ void save_edit(char *description, char *enter_cmd, int regoto) putlbstr("success", 0); FreeStrBuf(&Line); if (templ != NULL) { - output_headers(1, 0, 0, 0, 0, 0); + output_headers(1, 0, 0, 0, 0, 0); DoTemplate(SKEY(templ), NULL, &NoCtx); end_burst(); } @@ -53,26 +53,28 @@ void save_edit(char *description, char *enter_cmd, int regoto) AppendImportantMessage(_(" has been saved."), -1); putlbstr("success", 1); if (templ != NULL) { - output_headers(1, 0, 0, 0, 0, 0); + output_headers(1, 0, 0, 0, 0, 0); DoTemplate(SKEY(templ), NULL, &NoCtx); end_burst(); } else if (regoto) { smart_goto(WC->CurRoom.name); - } else { + } + else { display_main_menu(); return; } } -void editinfo(void) {save_edit(_("Room info"), "EINF 1", 1);} -void editbio(void) { save_edit(_("Your bio"), "EBIO", 0); } +void editinfo(void) { + save_edit(_("Room info"), "EINF 1", 1); +} +void editbio(void) { + save_edit(_("Your bio"), "EBIO", 0); +} -void -InitModule_SYSMSG -(void) -{ +void InitModule_SYSMSG(void) { WebcitAddUrlHandler(HKEY("editinfo"), "", 0, editinfo, 0); WebcitAddUrlHandler(HKEY("editbio"), "", 0, editbio, 0); }