Bugzilla – Attachment 115874 Details for
Bug 14004
Add ability to temporarily disable added CSS and Javascript in OPAC and interface
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14004: Set the syspref's value to an empty string
Bug-14004-Set-the-sysprefs-value-to-an-empty-strin.patch (text/plain), 1.42 KB, created by
Jonathan Druart
on 2021-01-27 11:21:19 UTC
(
hide
)
Description:
Bug 14004: Set the syspref's value to an empty string
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2021-01-27 11:21:19 UTC
Size:
1.42 KB
patch
obsolete
>From 446e143c6dcd1ce5500091748c926d4e1a8fcef3 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 27 Jan 2021 12:03:33 +0100 >Subject: [PATCH] Bug 14004: Set the syspref's value to an empty string > >It's tested with "defined" in C4::Context->preference >--- > C4/Auth.pm | 18 +++++++++++++----- > 1 file changed, 13 insertions(+), 5 deletions(-) > >diff --git a/C4/Auth.pm b/C4/Auth.pm >index cef3cb4755..e0b27dbce0 100644 >--- a/C4/Auth.pm >+++ b/C4/Auth.pm >@@ -442,11 +442,19 @@ sub get_template_and_user { > > # Sysprefs disabled via URL param > # Note that value must be defined in order to override via ENV >- foreach my $syspref ( qw( OPACUserCSS OPACUserJS IntranetUserCSS IntranetUserJS ) ) { >- $ENV{"OVERRIDE_SYSPREF_$syspref"} = q{ } if $in->{'query'}->param("DISABLE_SYSPREF_$syspref"); >- } >- foreach my $syspref ( qw( intranetcolorstylesheet intranetstylesheet ) ) { >- $ENV{"OVERRIDE_SYSPREF_$syspref"} = 0 if $in->{'query'}->param("DISABLE_SYSPREF_$syspref"); >+ foreach my $syspref ( >+ qw( >+ OPACUserCSS >+ OPACUserJS >+ IntranetUserCSS >+ IntranetUserJS >+ intranetcolorstylesheet >+ intranetstylesheet >+ ) >+ ) >+ { >+ $ENV{"OVERRIDE_SYSPREF_$syspref"} = q{} >+ if $in->{'query'}->param("DISABLE_SYSPREF_$syspref"); > } > > # Anonymous opac search history >-- >2.20.1
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 14004
:
115064
|
115120
|
115567
|
115583
|
115584
|
115589
|
115590
|
115871
|
115874
|
115876
|
115883