From: Rob H. <for...@us...> - 2002-06-05 00:51:52
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv26676/bin Modified Files: sandweb.cgi Log Message: fixed mostly cosmetic issue, after committing a file, the output page would have HTTP headers and the commit message prompt under it again, the vcs_commit "if" block that handled "commits" needed to exit after it was done. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.295 retrieving revision 1.296 diff -U2 -r1.295 -r1.296 --- sandweb.cgi 4 Jun 2002 18:13:55 -0000 1.295 +++ sandweb.cgi 5 Jun 2002 00:51:49 -0000 1.296 @@ -250,4 +250,5 @@ location => $location, ); + exit; } else { tag_menu( @@ -258,4 +259,5 @@ location => $location, ); + exit; } exit; @@ -303,4 +305,5 @@ location => $location, ); + exit; } elsif ( $action eq 'view_file' ) { @@ -2089,4 +2092,5 @@ MESSAGE => $message, ); + exit; } my $content = $ui->get_menu( |