my @sorted_array = sort {$array[$a]->{color} cmp $array[$b]->{color} }
@array;
Rather,
my @sorted = sort { $a->{color} cmp $b->{color} } @array; # or maybe @$arrayref
--Ben
------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Html-template-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/html-template-users
