View | Details | Raw Unified | Return to bug 28688
Collapse All | Expand All

(-)a/misc/cronjobs/membership_expiry.pl (-5 / +6 lines)
Lines 209-218 $letter_renew = 'MEMBERSHIP_RENEWED' if !$letter_renew; Link Here
209
209
210
pod2usage( -verbose => 2 ) if $man;
210
pod2usage( -verbose => 2 ) if $man;
211
pod2usage(1) if $help || !$confirm;
211
pod2usage(1) if $help || !$confirm;
212
if ( defined($active) && defined($inactive) ) {
212
213
    print "Sorry, it is not possible to pass both -active as well as -inactive.\n";
213
pod2usage(
214
    exit;
214
    -verbose => 1,
215
}
215
    -msg     => q{The --active and --inactive flags are mutually exclusive},
216
    -exitval => 1
217
) if defined $active && defined $inactive;
216
218
217
cronlogaction({ info => $command_line_options });
219
cronlogaction({ info => $command_line_options });
218
220
219
- 

Return to bug 28688