* Dave Hodgkinson <[EMAIL PROTECTED]> [2002-07-30 08:10]:
> darren chamberlain <[EMAIL PROTECTED]> writes:
> 
> > Apparently, $q->end_form is returning a stringified array.  Which is to
> > say, I don't have an answer for you, but the problem scope is
> > narrower.  Next stop: perl -d tpage.
> 
> Or:
> 
> q.end_form.join ;
> 
> /me joins the cargo cult.

Yep, changing those lines to:

    my $end_form = $stash->get(['q', 0, 'end_form', 0]);
    use Data::Dumper;
    warn "\$end_form is " . Dumper($end_form);

Gives:

    $end_form is $VAR1 = [
              '<input type="hidden" name=".cgifields" value="keyword_id" />',
              '</form>'
            ];

.join will work.

(darren)

-- 
The limits of my language mean the limits of my world.
    -- Ludwig Wittgenstein

_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://www.template-toolkit.org/mailman/listinfo/templates

Reply via email to