From: Rob H. <for...@us...> - 2002-11-05 21:12:09
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv27037/bin Modified Files: sandweb.cgi Log Message: oh yeah, that's how you pass an array through a template, using a template loop. when $cgi->param() finds multiple keys in an incoming url ( or HTTP POST ), it puts then together into an array. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.327 retrieving revision 1.328 diff -U2 -r1.327 -r1.328 --- sandweb.cgi 5 Nov 2002 08:45:31 -0000 1.327 +++ sandweb.cgi 5 Nov 2002 21:12:03 -0000 1.328 @@ -1782,5 +1782,5 @@ PROGNAME => $progname, LOCATION => $location, - FILENAME => @filename, + FILENAME_LOOP => \@filename_loop, VCS_COMMAND => $vcs_command, VCS_MESSAGE => $vcs_message, |