
KevinR
Veteran

Mar 12, 2008, 10:58 AM
Post #2 of 3
(224 views)
|
|
Re: [liven] Using a hash as a reference is deprecated
[In reply to]
|
Can't Post
|
|
replace % with $: $bad_files->{"$current_dir"} = "@stuff"; You don't need and really don't want the quotes around the scalar, that is a bad habit to get into when writing perl code: $bad_files->{$current_dir} = "@stuff"; the quotes around the array will turn it into a scalar which is what I assume you want. -------------------------------------------------
|