X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fauth.c;h=423e3d4c2203491392976374c16959017b03bb46;hb=63deece5bd2380725f32c42b5af0e74272afa140;hp=3c0058bf45c824d1e039b7f98d36e8facc4028ec;hpb=ed8843feaaba4342f5c8b4181242e4f094f147ef;p=citadel.git diff --git a/webcit/auth.c b/webcit/auth.c index 3c0058bf4..423e3d4c2 100644 --- a/webcit/auth.c +++ b/webcit/auth.c @@ -185,7 +185,7 @@ void do_welcome(void) } if (!setup_wizard) { - http_redirect("/setup_wizard"); + http_redirect("setup_wizard"); } } #endif @@ -195,7 +195,7 @@ void do_welcome(void) */ get_preference("startpage", buf, sizeof buf); if (strlen(buf)==0) { - safestrncpy(buf, "/dotskip&room=_BASEROOM_", sizeof buf); + safestrncpy(buf, "dotskip&room=_BASEROOM_", sizeof buf); set_preference("startpage", buf, 1); } http_redirect(buf); @@ -363,10 +363,10 @@ void display_reg(int during_login) } if (during_login) { - do_edit_vcard(vcard_msgnum, "1", "/do_welcome"); + do_edit_vcard(vcard_msgnum, "1", "do_welcome"); } else { - do_edit_vcard(vcard_msgnum, "1", "/display_main_menu"); + do_edit_vcard(vcard_msgnum, "1", "display_main_menu"); } }