Subscribable aspect should propagate result of purge, instead of always returning false. Fixes bug #11446

This commit is contained in:
Colin Kuskie 2010-03-01 08:30:17 -08:00
parent 7532c43d46
commit b462ce0b41
2 changed files with 3 additions and 2 deletions

View file

@ -429,9 +429,9 @@ sub purge {
my $group = $self->getSubscriptionGroup();
$group->delete;
$self->next::method($options);
my $success = $self->next::method($options);
return;
return $success;
}
#----------------------------------------------------------------------------