Subscribable aspect should propagate result of purge, instead of always returning false. Fixes bug #11446
This commit is contained in:
parent
7532c43d46
commit
b462ce0b41
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue