hesco has asked for the wisdom of the Perl Monks concerning the following question:
UPDATE: Yes, of course, an anonymous hash! Thank you rhesa, liverpole and jwkrahn. That ran it through to completion for the first time in several disjointed stolen moments with this code over a week or two. Building this test suite is the 'hobby' project waiting in a distant window for me to have breaks from other projects. This question got composed last night after too many hours of staring at php code for a client, before such a stolen moment. Before being finally submitted this evening during another such moment.
This code:
is throwing the following errors:$test_subscriptions->{"test_case-$j"} = ( 'fname' => $lname, 'lname' => $fname, 'zip' => '02486', 'email' => $email, 'lists' => ['news','updates','vols-annc'], );
Any clues appreciated.Useless use of a constant in void context at line 130. Useless use of private variable in void context at line 130. Useless use of a constant in void context at line 130. Useless use of private variable in void context at line 130. Useless use of a constant in void context at line 130. Useless use of a constant in void context at line 130. Useless use of a constant in void context at line 130. Useless use of private variable in void context at line 130. Useless use of a constant in void context at line 130. Can't call method "isa" without a package or object reference at line +66.
-- Hugh
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: What useless about that?
by liverpole (Monsignor) on Nov 10, 2006 at 00:35 UTC | |
|
Re: What useless about that?
by jwkrahn (Abbot) on Nov 10, 2006 at 00:39 UTC | |
|
Re: What useless about that?
by rhesa (Vicar) on Nov 10, 2006 at 00:34 UTC | |
by jonadab (Parson) on Nov 10, 2006 at 22:46 UTC |