From 33c704832ec58dbf39c2207a6bcd540ba7e8f2e3 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 13 Jun 2023 16:11:53 +0000 Subject: [PATCH] Bug 33998: Installer and onboarding have incorrect Font Awesome asset links This patch corrects the Font Awesome asset links in the web installer. They were not updated during the upgrade to Font Awesome 6. Unrelated: The patch also removes the inclusion of jQueryUI. It is not used in the installation or onboarding process. To test, apply the patch and run the web installer. The display of installation steps should include square icons indicating which steps are complete. Signed-off-by: Lucas Gass Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- .../prog/en/includes/installer-doc-head-close.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc index e1637d7bcc..62b01cc951 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc @@ -2,9 +2,10 @@ [% USE Asset %] -[% Asset.css("lib/jquery/jquery-ui-1.13.1.min.css") | $raw %] [% Asset.css("lib/bootstrap/bootstrap.min.css") | $raw %] -[% Asset.css("lib/font-awesome/css/font-awesome.min.css") | $raw %] +[% Asset.css("lib/fontawesome/css/fontawesome.min.css") | $raw %] +[% Asset.css("lib/fontawesome/css/brands.min.css") | $raw %] +[% Asset.css("lib/fontawesome/css/solid.min.css") | $raw %] [% Asset.css("css/installer.css") | $raw %]