Thread ungelöste Meldung durch use diagnostics (30 answers)
Opened by Auctioneer at 2013-01-03 21:49

Gast Gast2
 2013-01-06 13:04
#164678 #164678
statt
Code (perl): (dl )
elsif ($category{$form{'category'}}) { &displist; }

dann
Code (perl): (dl )
1
2
3
4
5
6
elsif (
    defined($form{'category'}) 
    and defined($category{$form{'category'}})
    and length($form{'category'}) 
    and length($category{$form{'category'}})
    ) { &displist; }

Last edited: 2013-01-06 13:26:15 +0100 (CET)

View full thread ungelöste Meldung durch use diagnostics