Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: How's My Style Now?

by elTriberium (Friar)
on Feb 06, 2010 at 02:23 UTC ( [id://821693]=note: print w/replies, xml ) Need Help??


in reply to How's My Style Now?

This:
if($musing_id =~ /[a-z]/ && $musing_id ne 'all') { [...] &page_heading($pg_head,$pg_text,undef); # center.pl } else { &page_heading($pg_head,$pg_text,undef); # center.pl }
Can be simplified to:
if($musing_id =~ /[a-z]/ && $musing_id ne 'all') { [...] } &page_heading($pg_head,$pg_text,undef); # center.pl

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-19 17:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found