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 <lucas@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
97afec9bc3
commit
33c704832e
1 changed files with 3 additions and 2 deletions
|
@ -2,9 +2,10 @@
|
|||
[% USE Asset %]
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | html %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
|
||||
[% 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 %]
|
||||
<script>
|
||||
var Koha = {};
|
||||
|
|
Loading…
Reference in a new issue