Revision b61d4f49
Von Moritz Bunkus vor mehr als 8 Jahren hinzugefügt
SL/Controller/Letter.pm | ||
---|---|---|
308 | 308 |
|
309 | 309 |
sub action_delete_drafts { |
310 | 310 |
my ($self) = @_; |
311 |
delete_letter_drafts(); |
|
311 |
|
|
312 |
my @ids = @{ $::form->{ids} || [] }; |
|
313 |
SL::DB::Manager::LetterDraft->delete_all(where => [ id => \@ids ]) if @ids; |
|
314 |
|
|
312 | 315 |
$self->action_add(skip_drafts => 1); |
313 | 316 |
} |
314 | 317 |
|
Auch abrufbar als: Unified diff
Brieffunktion: Löschen von Entwürfen gefixt