From: Rob H. <for...@us...> - 2001-11-26 23:33:19
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory usw-pr-cvs1:/tmp/cvs-serv10409/lib/SandWeb/Repository Modified Files: CVS.pm Log Message: fixed a couple bugs in the file subroutine of sandweb.cgi, it was not passing the correct path to File->new(), and also did an "unless" instead of an "if" when checking to see if we were dealing with a binary file ( if so, a warning is issued when you view/edit the file ). Index: CVS.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/CVS.pm,v retrieving revision 1.10 retrieving revision 1.11 diff -U2 -r1.10 -r1.11 --- CVS.pm 2001/11/26 19:48:14 1.10 +++ CVS.pm 2001/11/26 23:33:17 1.11 @@ -831,6 +831,8 @@ my $errorlevel = $?; - my %return = ( output => $output, - errorlevel => $errorlevel ); + my %return = ( + output => $output, + errorlevel => $errorlevel, + ); return %return; |