Fix handling of extra_query_params in Business::OnlinePayment wrapper.
[interchange.git] / code / SystemTag / output_to.tag
1 # Copyright 2002-2007 Interchange Development Group and others
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.  See the LICENSE file for details.
7
8 # $Id: output_to.tag,v 1.4 2007-03-30 23:40:49 pajamian Exp $
9
10 UserTag output-to Order      name
11 UserTag output-to addAttr
12 UserTag output-to hasEndTag
13 UserTag output-to Version    $Revision: 1.4 $
14 UserTag output-to Routine    <<EOR
15 sub {
16         my ($name, $opt, $body) = @_;
17         $name ||= '';
18         $name = lc $name;
19         my $nary = $Vend::OutPtr{$name} ||= [];
20         push @Vend::Output, \$body;
21         push @$nary, $#Vend::Output;
22         return;
23 }
24 EOR