Skip to content

Commit 6f66c03

Browse files
author
roger
committed
Fixed a proble inserting unused unban_actions.
1 parent 7d884fb commit 6f66c03

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Koha/Plugin/Com/LMSCloud/LatePaymentClaiming.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ use Koha::Plugin::Com::LMSCloud::LatePaymentClaiming::LatePaymentClaimingConfigu
4040
use Koha::Plugin::Com::LMSCloud::LatePaymentClaiming::LatePaymentClaiming;
4141
use Koha::Plugin::Com::LMSCloud::LatePaymentClaiming::CheckExecution;
4242

43-
our $VERSION = "0.6.0";
43+
our $VERSION = "0.7.0";
4444
our $MINIMUM_VERSION = "22.11";
4545

4646
our $metadata = {
4747
name => 'Gebührenmahnung',
4848
author => 'LMSCloud GmbH',
4949
date_authored => '2026-02-15',
50-
date_updated => "2026-03-31",
50+
date_updated => "2026-04-02",
5151
minimum_version => $MINIMUM_VERSION,
5252
maximum_version => undef,
5353
version => $VERSION,

Koha/Plugin/Com/LMSCloud/LatePaymentClaiming/LatePaymentClaimingConfiguration.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,15 +255,15 @@ sub saveConfiguration {
255255
}, undef,
256256
$savedConf->{outstanding_fee_limit},
257257
$savedConf->{patron_selections},
258-
$savedConf->{ban_actions}
258+
$savedConf->{ban_actions},
259259
$savedConf->{id}
260260
);
261261
}
262262
# or do an insert
263263
else {
264264
$dbh->do(q{
265265
INSERT lmsc_late_payment_claim_rules (branchcode,categorycode,level,outstanding_fee_limit,patron_selections,ban_actions)
266-
VALUES (?,?,?,?,?,?,?)
266+
VALUES (?,?,?,?,?,?)
267267
}, undef,
268268
$savedConf->{branchcode},
269269
$savedConf->{categorycode},

0 commit comments

Comments
 (0)