in reply to Re^3: Weird mod_perl Regex '0' behavior.
in thread Weird mod_perl Regex '0' behavior.
And the proper code should have been,unless ( is_input_valid() ) { report_bad_input(); }
Very careless of me. I apologize. Thank you for the help.unless ( defined is_input_valid() ) { report_bad_input(); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Weird mod_perl Regex '0' behavior.
by perrin (Chancellor) on Sep 25, 2008 at 18:15 UTC |