From: Rob H. <for...@us...> - 2002-02-26 00:22:46
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv1635/bin Modified Files: sandweb.cgi Log Message: fixed overzealous stripping of / in location that made edit/unedit have problems when returning to browse_module_menu Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.225 retrieving revision 1.226 diff -U2 -r1.225 -r1.226 --- sandweb.cgi 26 Feb 2002 00:12:52 -0000 1.225 +++ sandweb.cgi 26 Feb 2002 00:22:42 -0000 1.226 @@ -1663,7 +1663,4 @@ if ( $vcs_command eq 'commit' ) { if ($message) { - # can't give the leading / to the VCS - $location =~ s/\///; - foreach my $file (@filename) { %return = $repository->commit( @@ -1719,6 +1716,4 @@ # elsif ( $vcs_command eq 'edit' || $vcs_command eq 'unedit' ) { - # can't give the leading / to the VCS - $location =~ s/\///; foreach my $file (@filename) { |