Bugzilla – Attachment 175033 Details for
Bug 38367
offset is wrong on plugins-disabled.tt page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38367: Fix offset on plugin-dsiabled.tt
Bug-38367-Fix-offset-on-plugin-dsiabledtt.patch (text/plain), 1.55 KB, created by
David Nind
on 2024-11-29 17:42:15 UTC
(
hide
)
Description:
Bug 38367: Fix offset on plugin-dsiabled.tt
Filename:
MIME Type:
Creator:
David Nind
Created:
2024-11-29 17:42:15 UTC
Size:
1.55 KB
patch
obsolete
>From 24fb956c8360237e5d6ba1d6383d1ad775312fa8 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Wed, 6 Nov 2024 00:11:12 +0000 >Subject: [PATCH] Bug 38367: Fix offset on plugin-dsiabled.tt > >To test: >1. Go to your koha-conf.xml and turn plugins off: <enable_plugins>0</enable_plugins> >2. Go to Administration -> Plugins >3. The text is not correctly offset. ( Bootstrap class is col-sm-offset-3 and should be offset-sm-3 in Bootstrap 5 ) >4. APPLY PATCH >5. Try again, the offset should look right. > >Signed-off-by: David Nind <david@davidnind.com> >--- > .../intranet-tmpl/prog/en/modules/plugins/plugins-disabled.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-disabled.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-disabled.tt >index 4199c84dbb..7d5c487f6d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-disabled.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-disabled.tt >@@ -28,7 +28,7 @@ > > <div class="container-fluid"> > <div class="row"> >- <div class="col-sm-6 col-sm-offset-3 col-md-6 col-md-offset-3"> >+ <div class="col-sm-6 offset-sm-3"> > [% IF ( plugins_restricted.defined ) && ( plugins_restricted == 1 ) %] > <h1>Plugin upload is restricted to only those plugins listed by your server administrator</h1> > <p>To enable unrestricted plugin uploads, ask your administrator to unset plugins_restricted in the Koha configuration file</p> >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38367
:
174055
|
174085
|
175033
|
175439