Xavier,

Have you tried

sub cgiapp_postrun
{
    my $self    = shift;
    my $html    = shift;

    return '<h3>' . $$html . '</h3>';
}

Is that the functionality that you're looking for? To surround everything in
an <h3> tag?

> sub cgiapp_postrun {
>   my $self = shift;
>   my $output_ref = shift;
>
>   my $new_output = "<h3>";#.$$output_ref."</h3>";
>   $output_ref = \$new_output;


---------------------------------------------------------------------
Web Archive:  http://www.mail-archive.com/[EMAIL PROTECTED]/
              http://marc.theaimsgroup.com/?l=cgiapp&r=1&w=2
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to