Thread Fehlermeldung: Global symbol "$Output" requires explicit package name (29 answers)
Opened by bendenn at 2012-07-26 14:04

bendenn
 2012-08-08 10:26
#160720 #160720
User since
2012-06-15
22 Artikel
BenutzerIn
[default_avatar]
Es ist vollbracht. :)
Bin mir nicht sicher warum, aber so läuft es rund.
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# --
# start html page
# --
sub Run {
       my ( $Self, %Param ) = @_;
           
        my $Output = $Self->{LayoutObject}->CustomerHeader();
           $Output .= $Self->{LayoutObject}->CustomerNavigationBar();   
           $Output .= $Self->{LayoutObject}->Output(
           TemplateFile => 'Contact',
           Data => \%Param,
        );
           # build footer
         $Output .= $Self->{LayoutObject}->CustomerFooter();

      return $Output;
}

1;


Vielen lieben Dank für die Hilfe, alleine hätte ich das nie hinbekommen.

View full thread Fehlermeldung: Global symbol "$Output" requires explicit package name