Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Better rewrite of multiple ifs

by Dietz (Curate)
on May 01, 2005 at 08:48 UTC ( [id://452997]=note: print w/replies, xml ) Need Help??


in reply to Better rewrite of multiple ifs

You've got 3 characters too many:
for ( keys %error_msgs) )
for ( keys %error_msgs) - removed trailing round bracket

unless ( $error_msgs){$_} )
unless ( $error_msgs{$_} ) - removed right round bracket after $error_msgs

print div( {class=>'tip'},  $%error_msgs{$_} );
print div( {class=>'tip'},  $error_msgs{$_} ); - removed percent sign

Update: Formatting

Replies are listed 'Best First'.
Re^2: Better rewrite of multiple ifs
by Nik (Initiate) on May 01, 2005 at 09:20 UTC
    Thank you!
    I though it was something in the logic but i guess i was too tired to see that extra brackets.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://452997]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-19 17:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found