From: Nick J. <nje...@us...> - 2003-04-23 22:45:52
|
Update of /cvsroot/sandweb/sandweb/bin In directory sc8-pr-cvs1:/tmp/cvs-serv19078/bin Modified Files: sandweb.cgi Log Message: This line was using an undefined (invalid) var. fixed. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.350 retrieving revision 1.351 diff -U2 -r1.350 -r1.351 --- sandweb.cgi 22 Apr 2003 18:02:12 -0000 1.350 +++ sandweb.cgi 23 Apr 2003 22:45:47 -0000 1.351 @@ -956,5 +956,5 @@ ); - $log->debug("current_location: ".$current_location{'location'}); + $log->debug("current_location: ".$location); my %localstatus = $repository->status(file => ".", recurse => "false" ); my @localstatusoutput=$localstatus{output}; |