From 3cabdffba77237e70b6508086fae49166a6d008d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 19 Dec 2024 12:24:01 +0100 Subject: [PATCH] Bug 38750: (bug 38385 follow-up) Unblock update process when nothing to do When we go to installer/install.pl and there is nothing to do we get a "Try again" button and never manage to finish the update. https://snipboard.io/TplscJ.jpg Test plan: Go to installer/install.pl Login Click next => Without this patch you are stuck with a "Try again" button => With this patch applied you get a success screen "Everything went okay. Update done." Signed-off-by: Emily Lamancusa --- koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt index f6dd94594d..164d0ba0c5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt @@ -451,7 +451,7 @@ [% END %] - [% UNLESS error OR atomic_updates.error OR has_update_errors %] + [% UNLESS error OR atomic_updates.error.size OR has_update_errors %]

Everything went okay. Update done.

Continue to log in to Koha

[% ELSE %] -- 2.34.1