Perhaps
param() is using a bare
return on error.
A bare
return returns undef
or the empty list, depending on the context in which the subroutine was called!
Your second example calls
param() in scalar context, so a bare
return would give you
undef;
Your first example calls
param() in list context, so a bare
return would give you
().
To help confirm my diagnosis, try replacing your anon-hash constructors
{...} with anon-array constructors
[...],
and impose scalar context by using
scalar directly. By avoiding the hash, you will prevent confusion from the random hash ordering in your dump.
use strict;
use warnings;
...
my $dump_string = Dumper [
### Uncomment one or the other of these two lines.
# edit_usr_id => $self->client->param( 'edit_usr_id' ),
edit_usr_id => scalar( $self->client->param( 'edit_usr_id' ) ),
mode => $self->client->param( 'mode' )
];
$self->log(LOGDEBUG, 'EDIT_USER: '.$dump_string ));
It should give something like:
EDIT_USER: $VAR1 = [
'edit_usr_id',
undef,
'mode',
'add',
];
or:
EDIT_USER: $VAR1 = [
'edit_usr_id',
'mode',
'add',
];
Also, you should have gotten a warning about 'Odd number of elements' in your hash assignment in your first example. You do have warnings turned on, don't you?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.