From: Rob H. <for...@us...> - 2002-01-18 21:14:46
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv3317/bin Modified Files: sandweb.cgi Log Message: ok, fixed the uninitialized value -w was complaining about, filename and location weren't being filled in in the file object that was being created to get the file_options. I initialized them with blank values. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.115 retrieving revision 1.116 diff -U2 -r1.115 -r1.116 --- sandweb.cgi 2002/01/18 19:46:43 1.115 +++ sandweb.cgi 2002/01/18 21:14:44 1.116 @@ -334,5 +334,7 @@ $log->debug("creating File object"); my $file = SandWeb::File->new( - 'log_obj' => $log, + 'log_obj' => $log, + 'filename' => "", + 'location' => "", ); |