in reply to deprecated access method

@{ %client_list{$session}}->{clientrate}}

should probably be
@{ $client_list{$session}->{clientrate} }

Cheers, Sören

Replies are listed 'Best First'.
Re^2: deprecated access method
by thekestrel (Friar) on Oct 24, 2004 at 22:30 UTC

    Sören,

    I just realised I didn't do my self any favours when making a typo (missing bracket)while transcribing it from my linux box, it was supposed to look like

    @{%{$client_list{$session}}->{$clientrate}}

    However you advice worked and looks a lot nicer than the way I way trying.


    Thanks =)