From: Rob H. <for...@us...> - 2002-11-09 08:31:36
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv21038/bin Modified Files: sandweb.cgi Log Message: this makes the main window refresh when remember_vcs_password is enabled ( vcs_menu calls vcs_commit directly in this case, instead of asking for the password and letting the CGI take care of it ). The call to vcs_commit in vcs_menu was missing the main_window_url parameter. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.333 retrieving revision 1.334 diff -U2 -r1.333 -r1.334 --- sandweb.cgi 7 Nov 2002 08:01:12 -0000 1.333 +++ sandweb.cgi 9 Nov 2002 08:31:32 -0000 1.334 @@ -1788,4 +1788,5 @@ location => $location, params => $params, + main_window_url => $main_window_url, ); @@ -2366,4 +2367,5 @@ $log->debug("username: $username"); $log->debug("location: $location"); + $log->debug("main_window_url: $main_window_url"); my $repo_server = $user->get_repo_server(repo => $repo_name); |