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

@ -1,6 +1,7 @@
7.9.0
- added: Optimized macro parser for perl 5.10
- fixed #11445: NotifyAboutUsers sends infinite e-mails
- fixed #11446: Delete a wiki
7.8.13
- fixed #11418: confusing typ-o in gotcha

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;
}
#----------------------------------------------------------------------------