From ef602a0bedd2808c8036d374b9f7593d8ced47d9 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 15 Apr 2025 12:28:41 +0000 Subject: [PATCH] Bug 39081: (follow-up) Use "data-order" instead of "data-sort" Both attribute names work the same but "data-order" is more frequent in our templates. --- .../prog/en/modules/tools/batch_extend_due_dates.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt index 8785ba0c024..e2fe82ee1a6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt @@ -181,13 +181,13 @@ [% FOR checkout IN checkouts %] - [% checkout.date_due | $KohaDates as_due_date => 1 %] + [% checkout.date_due | $KohaDates as_due_date => 1 %] [% checkout.item.biblio.title | html %] [% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %] [% checkout.item.home_branch.branchname | html %] - [% checkout.issuedate | $KohaDates %] + [% checkout.issuedate | $KohaDates %] [% Branches.GetName( checkout.branchcode ) | html %] - [% new_due_dates.shift | $KohaDates as_due_date => 1 %] + [% new_due_dates.shift | $KohaDates as_due_date => 1 %] [% END %] @@ -228,11 +228,11 @@ [% FOR checkout IN checkouts %] - [% checkout.date_due | $KohaDates as_due_date => 1 %] + [% checkout.date_due | $KohaDates as_due_date => 1 %] [% checkout.item.biblio.title | html %] [% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %] [% checkout.item.home_branch.branchname | html %] - [% checkout.issuedate | $KohaDates %] + [% checkout.issuedate | $KohaDates %] [% Branches.GetName( checkout.branchcode ) | html %] [% END %] -- 2.39.5