Remove more instances of direct hash access for properties.

This commit is contained in:
Colin Kuskie 2010-01-14 10:31:38 -08:00
parent 8664d6f6ef
commit 1331bf9828
3 changed files with 17 additions and 9 deletions

View file

@ -292,7 +292,7 @@ sub trash {
$db->commit;
# Update ourselves since we didn't use update()
$self->{_properties}{state} = "trash";
$self->state("trash");
return 1;
}