>>BugTrack->update_request ( %hash );

Btw, passing the hash isn't efficient as passing it's reference. When you
passing only a ref there's no copying of the whole hash .. the usual stuff.
So, it's only my advice to call

BugTrack->update_request ( \%hash )

and use a corresponding dereferencing syntax in update_request()
( perlreftut )


Reply via email to