From: Rob H. <for...@us...> - 2002-10-17 06:31:40
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv4054/bin Modified Files: sandweb.cgi Log Message: when done with configuration_commit, go back to configuration_menu instead of sandbox_menu Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.324 retrieving revision 1.325 diff -U2 -r1.324 -r1.325 --- sandweb.cgi 7 Oct 2002 06:53:42 -0000 1.324 +++ sandweb.cgi 17 Oct 2002 06:31:36 -0000 1.325 @@ -2625,12 +2625,13 @@ my $return = write_config(); - if (! $return) { + + if (! $return) { # uh oh, problem occured configuration_menu( ck_auth => $ck_auth ); } - # when finished go to sandbox menu. (this should be dynamic probably, - # so it returns to whichever menu they wanted to go to in the first - # place). - sandbox_menu( ck_auth => $ck_auth ); + + # when finished go back to configuration menu. + + configuration_menu( ck_auth => $ck_auth ); } |