* Remove "Page another user" link from main menu
authorArt Cancro <ajc@citadel.org>
Sun, 31 Mar 2002 05:02:39 +0000 (05:02 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 31 Mar 2002 05:02:39 +0000 (05:02 +0000)
* Add "edit my citadel config room" type link from edit user screen

webcit/ChangeLog
webcit/README.txt
webcit/mainmenu.c
webcit/useredit.c

index e63eca62a91f759117d4e8f3460124a665ceb8e0..ecfabe0a8a1bf0417b8dd621103afd438387a618 100644 (file)
@@ -1,4 +1,8 @@
 $Log$
+Revision 323.20  2002/03/31 05:02:39  ajc
+* Remove "Page another user" link from main menu
+* Add "edit my citadel config room" type link from edit user screen
+
 Revision 323.19  2002/03/29 22:30:45  ajc
 * Finished the "edit user" screen.
 
@@ -771,3 +775,4 @@ 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 1a96ad1d234fec94e3b8958e0458ee5b5605adfe..ac3f60582c9f7cc202cf2d03e01f8deb54b18be3 100644 (file)
@@ -1,7 +1,7 @@
                       WEBCIT for the Citadel/UX System
                                version 3.23
  
-   Copyright (C) 1996-2001 by the authors.  Portions written by:
+   Copyright (C) 1996-2002 by the authors.  Portions written by:
        Art Cancro
        Nathan Bryant
        Nick Grossman
index 1a08016f69f0d87a71f9fcdb0c6ed22074458cc6..052bd7fc44c0ba0c371975706c35a420a654bfb9 100644 (file)
@@ -97,9 +97,6 @@ void display_main_menu(void)
        wprintf("</FONT></TD></TR></TABLE>\n");
 
        wprintf("<UL>");
-       wprintf("<LI><A HREF=\"/display_page\">\n");
-       wprintf("Page another user</A>\n");
-
        wprintf("<LI><A HREF=\"/chat\">");
        wprintf("Chat with other online users</A>\n");
 
index 19fa7a76f6eeb21aaf23af25b10459b6fa634c91..79afc94c31c3fcac3769ea881d96e3df5689b937 100644 (file)
@@ -199,9 +199,15 @@ void display_edituser(char *supplied_username) {
 
        wprintf("<INPUT type=\"submit\" NAME=\"action\" VALUE=\"OK\">\n"
                "<INPUT type=\"submit\" NAME=\"action\" VALUE=\"Cancel\">\n"
-               "</CENTER>\n");
+               "<BR><BR></FORM>\n");
 
-       wprintf("</FORM>\n");
+       wprintf("<A HREF=\"/dotgoto&room=%010ld.My%%20Citadel%%20Config\">",
+               usernum);
+       wprintf("Click here to access the configuration room for ");
+       escputs(username);
+       wprintf("</A><BR>\n"
+               "(Contact information, Internet e-mail addresses, etc.)<BR>"
+               "</CENTER>\n");
 
        wDumpContent(1);