]> code.citadel.org Git - citadel.git/commitdiff
* Fixed login to take you to the Lobby instead of the next room.
authorArt Cancro <ajc@citadel.org>
Thu, 31 May 2001 02:26:24 +0000 (02:26 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 31 May 2001 02:26:24 +0000 (02:26 +0000)
webcit/ChangeLog
webcit/static/mainframeset.html
webcit/webcit.c

index 4f2e51c7f22662a19ffca2ed6176084af751a4bb..79c1f692ae8307c55e2838f45eeabc7089e3615b 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 213.20  2001/05/31 02:26:22  ajc
+* Fixed login to take you to the Lobby instead of the next room.
+
 Revision 213.19  2001/05/30 22:37:09  ajc
 * Fix to upload handler to recognize browser uploads based on *either* a "name"
   or a "filename" from the MIME parser.
@@ -566,4 +569,3 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
index 1fa73ace02687a8adf571dd89c1c28b7642429d8..fc54b72c9c6dabcb0dfaedb0f7e3fc97944a5601 100644 (file)
@@ -6,7 +6,7 @@
        <FRAMESET COLS="75, *" FRAMESPACING=0 BORDER="FALSE" FRAMEBORDER=0>
                <FRAME NAME="left" SRC="/static/iconbar.html" SCROLLING="no">
                <FRAMESET ROWS="*, 45" FRAMESPACING=0 BORDER="FALSE" FRAMEBORDER=0>
-                       <FRAME NAME="workspace" SRC="/skip&room=_BASEROOM_">
+                       <FRAME NAME="workspace" SRC="/dotskip&room=_BASEROOM_">
                        <FRAMESET COLS="*, 1" FRAMESPACING=0 BORDER="FALSE" FRAMEBORDER=0>
                                <FRAME NAME="bottom" SRC="/static/navbar.html" SCROLLING="no">
                                <FRAME NAME="ka" SRC="/blank" SCROLLING="no">
index 451065e1b14a98f5ad2a80b9de16fd15c6857fee..5758f708a44f82de7e3ed6a758dd72bf0c4cdf4f 100644 (file)
@@ -778,6 +778,8 @@ void session_loop(struct httprequest *req)
        } else if (!strcasecmp(action, "dotgoto")) {
                slrp_highest();
                smart_goto(bstr("room"));
+       } else if (!strcasecmp(action, "dotskip")) {
+               smart_goto(bstr("room"));
        } else if (!strcasecmp(action, "termquit")) {
                do_logout();
        } else if (!strcasecmp(action, "readnew")) {