From bugzilla-daemon@bugs.koha-community.org Thu Mar 16 15:19:51 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 33244] New: Do not show lists in OPAC if OpacPublic
is disabled
Date: Thu, 16 Mar 2023 14:19:50 +0000
Message-ID:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============2090261638616243525=="
--===============2090261638616243525==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D33244
Bug ID: 33244
Summary: Do not show lists in OPAC if OpacPublic is disabled
Change sponsored?: ---
Product: Koha
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P5 - low
Component: OPAC
Assignee: oleonard@myacpl.org
Reporter: data-27FC05A3CB97@office-dateien.de
QA Contact: testopia@bugs.koha-community.org
Koha will still show public lists next to the logo in OPAC even when OpacPubl=
ic
is disabled, i.e. patrons are required to login to access anything.
This can be a privacy issue, since list names may contain things that are not
meant to be public and are intended to been seen only by registered patrons.
Also it is not useful anyway, as clicking on a list list name does not actual=
ly
bring up that list and just shows the login form.
The whole list tab should be hidden when OpacPublic is disabled and a user is
not logged in.
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============2090261638616243525==--
From bugzilla-daemon@bugs.koha-community.org Wed Oct 25 23:20:07 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Wed, 25 Oct 2023 21:20:06 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5750894047135644961=="
--===============5750894047135644961==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D33244
--- Comment #1 from jpl ---
Quick workaround I came up with. Works for me with Koha 22.11.10.000 Rosalie.
This will only shows the lists when a user is logged in if opacpublic is set =
to
false.
--- /koha/src/masthead.inc 2023-10-25 23:02:01.538423660 +0200
+++ masthead.inc 2023-10-25 23:03:45.558420570 +0200
@@ -37,6 +37,7 @@
[% END %]
[% IF ( Koha.Preference( 'virtualshelves' ) =3D=3D 1 ) %]
+ [% IF (( Koha.Preference( 'opacpublic' ) =3D=3D 0 ) &=
& (
logged_in_user )) || ( Koha.Preference( 'opacpublic' )) %]
[% END # / IF virtualshelves %]
+ [% END %]
[% IF Koha.Preference( 'opacuserlogin' ) =3D=3D 1 || Koha.Prefe=
rence(
'EnableOpacSearchHistory') || Koha.Preference( 'opaclanguagesdisplay' ) %]
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============5750894047135644961==--
From bugzilla-daemon@bugs.koha-community.org Tue Nov 21 17:33:03 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Tue, 21 Nov 2023 16:33:02 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1036728908720960975=="
--===============1036728908720960975==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Owen Leonard changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |Needs Signoff
Patch complexity|--- |Small patch
--
You are receiving this mail because:
You are watching all bug changes.
--===============1036728908720960975==--
From bugzilla-daemon@bugs.koha-community.org Tue Nov 21 17:33:13 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Tue, 21 Nov 2023 16:33:04 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============0693778113140553902=="
--===============0693778113140553902==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
--- Comment #2 from Owen Leonard ---
Created attachment 159170
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159170&action=edit
Bug 33244: Do not show lists in OPAC if OpacPublic is disabled
This patch updates markup and CSS in the OPAC header so that the Cart
and Lists controls don't appear when OpacPublic is disabled.
The patch also moves the "Your cookies" link into the group of links
with "Log in to your account" and "Search history." This makes the
template logic a little simpler and also seems like a more logical
grouping.
To test, apply the patch and enable the CookieContent system preference.
- View the OPAC with the OpacPublic system preference enabled.
- If necessary, click the "Accept all cookies" button.
- The "Your cookies" link should now appear in the header between the
log-in link and the search history link.
- Test the page at various browser widths to confirm that the header
still responds well to changes.
- Go back to system preferences in the staff client and change the
OpacPublic system preference to "disabled."
- Return to the OPAC and refresh the page. You should be redirected to
the login page, and the Cart and Lists buttons should no longer appear
in the header.
- The links in the header for login and cookies should look correct at
various browser widths.
--
You are receiving this mail because:
You are watching all bug changes.
--===============0693778113140553902==--
From bugzilla-daemon@bugs.koha-community.org Tue Nov 21 17:35:58 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Tue, 21 Nov 2023 16:35:57 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============4852255065202446288=="
--===============4852255065202446288==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Owen Leonard changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|unspecified |master
--
You are receiving this mail because:
You are watching all bug changes.
--===============4852255065202446288==--
From bugzilla-daemon@bugs.koha-community.org Tue Nov 21 23:10:56 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Tue, 21 Nov 2023 22:10:55 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6157172461799690840=="
--===============6157172461799690840==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
David Cook changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dcook@prosentient.com.au
--- Comment #3 from David Cook ---
*** Bug 30264 has been marked as a duplicate of this bug. ***
--
You are receiving this mail because:
You are watching all bug changes.
--===============6157172461799690840==--
From bugzilla-daemon@bugs.koha-community.org Wed Nov 22 00:25:33 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Tue, 21 Nov 2023 23:25:32 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============8844998851043594441=="
--===============8844998851043594441==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D33244
--- Comment #4 from David Cook ---
I'm not sure why these 2 unrelated changes are on the same bug report.
I don't understand why only anonymous users see the "Your cookies" link, and
why logged in users have to go into their account and look at "Consents". But=
I
think that's an issue in master... so I'm not going to worry about it.
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============8844998851043594441==--
From bugzilla-daemon@bugs.koha-community.org Wed Nov 22 00:27:52 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Tue, 21 Nov 2023 23:27:51 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1537276812629130715=="
--===============1537276812629130715==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
--- Comment #5 from David Cook ---
(In reply to David Cook from comment #4)
> I'm not sure why these 2 unrelated changes are on the same bug report.
Oh wait... I understand now. It is related because you're hiding the Cart and
Lists. Yep yep yep. Gotcha. Makes sense. All good.
--
You are receiving this mail because:
You are watching all bug changes.
--===============1537276812629130715==--
From bugzilla-daemon@bugs.koha-community.org Wed Nov 22 01:12:48 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Wed, 22 Nov 2023 00:12:47 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5957585112784531226=="
--===============5957585112784531226==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
David Cook changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|Needs Signoff |Signed Off
--
You are receiving this mail because:
You are watching all bug changes.
--===============5957585112784531226==--
From bugzilla-daemon@bugs.koha-community.org Wed Nov 22 01:12:58 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Wed, 22 Nov 2023 00:12:49 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1250822434105422685=="
--===============1250822434105422685==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
David Cook changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #159170|0 |1
is obsolete| |
--- Comment #6 from David Cook ---
Created attachment 159188
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159188&action=edit
Bug 33244: Do not show lists in OPAC if OpacPublic is disabled
This patch updates markup and CSS in the OPAC header so that the Cart
and Lists controls don't appear when OpacPublic is disabled.
The patch also moves the "Your cookies" link into the group of links
with "Log in to your account" and "Search history." This makes the
template logic a little simpler and also seems like a more logical
grouping.
To test, apply the patch and enable the CookieContent system preference.
- View the OPAC with the OpacPublic system preference enabled.
- If necessary, click the "Accept all cookies" button.
- The "Your cookies" link should now appear in the header between the
log-in link and the search history link.
- Test the page at various browser widths to confirm that the header
still responds well to changes.
- Go back to system preferences in the staff client and change the
OpacPublic system preference to "disabled."
- Return to the OPAC and refresh the page. You should be redirected to
the login page, and the Cart and Lists buttons should no longer appear
in the header.
- The links in the header for login and cookies should look correct at
various browser widths.
Signed-off-by: David Cook
--
You are receiving this mail because:
You are watching all bug changes.
--===============1250822434105422685==--
From bugzilla-daemon@bugs.koha-community.org Thu Nov 23 13:40:37 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Thu, 23 Nov 2023 12:40:36 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============0720470000417760981=="
--===============0720470000417760981==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Jonathan Druart changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jonathan.druart+koha@gmail.
| |com
--- Comment #7 from Jonathan Druart ---
"Log in to your account" is now on the left, is that expected?
--
You are receiving this mail because:
You are watching all bug changes.
--===============0720470000417760981==--
From bugzilla-daemon@bugs.koha-community.org Fri Nov 24 00:25:22 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Thu, 23 Nov 2023 23:25:21 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6858069770201617761=="
--===============6858069770201617761==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D33244
--- Comment #8 from David Cook ---
(In reply to Jonathan Druart from comment #7)
> "Log in to your account" is now on the left, is that expected?
The test plan should've said that you need to run "perl build-resources.PL" to
re-generate the CSS.=20
If you don't, it will appear on the left. But if you do run it, then "Log in =
to
your account" is still on the right as expected.
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============6858069770201617761==--
From bugzilla-daemon@bugs.koha-community.org Fri Nov 24 00:26:00 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Thu, 23 Nov 2023 23:25:59 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============7286338430623851349=="
--===============7286338430623851349==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
--- Comment #9 from David Cook ---
(In reply to David Cook from comment #8)
> (In reply to Jonathan Druart from comment #7)
> > "Log in to your account" is now on the left, is that expected?
>
> The test plan should've said that you need to run "perl build-resources.PL"
> to re-generate the CSS.
I should've noted it when testing due to its absence. My bad.
--
You are receiving this mail because:
You are watching all bug changes.
--===============7286338430623851349==--
From bugzilla-daemon@bugs.koha-community.org Fri Nov 24 08:09:26 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Fri, 24 Nov 2023 07:09:25 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5542880181949092681=="
--===============5542880181949092681==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
--- Comment #10 from Jonathan Druart ---
I could have guessed...
--
You are receiving this mail because:
You are watching all bug changes.
--===============5542880181949092681==--
From bugzilla-daemon@bugs.koha-community.org Fri Nov 24 08:10:13 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Fri, 24 Nov 2023 07:10:12 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6755981506752959966=="
--===============6755981506752959966==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Jonathan Druart changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|Signed Off |Passed QA
--
You are receiving this mail because:
You are watching all bug changes.
--===============6755981506752959966==--
From bugzilla-daemon@bugs.koha-community.org Fri Nov 24 08:10:23 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Fri, 24 Nov 2023 07:10:15 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============0752395312257034418=="
--===============0752395312257034418==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Jonathan Druart changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #159188|0 |1
is obsolete| |
--- Comment #11 from Jonathan Druart ---
Created attachment 159225
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159225&action=edit
Bug 33244: Do not show lists in OPAC if OpacPublic is disabled
This patch updates markup and CSS in the OPAC header so that the Cart
and Lists controls don't appear when OpacPublic is disabled.
The patch also moves the "Your cookies" link into the group of links
with "Log in to your account" and "Search history." This makes the
template logic a little simpler and also seems like a more logical
grouping.
To test, apply the patch and enable the CookieContent system preference.
- View the OPAC with the OpacPublic system preference enabled.
- If necessary, click the "Accept all cookies" button.
- The "Your cookies" link should now appear in the header between the
log-in link and the search history link.
- Test the page at various browser widths to confirm that the header
still responds well to changes.
- Go back to system preferences in the staff client and change the
OpacPublic system preference to "disabled."
- Return to the OPAC and refresh the page. You should be redirected to
the login page, and the Cart and Lists buttons should no longer appear
in the header.
- The links in the header for login and cookies should look correct at
various browser widths.
Signed-off-by: David Cook
Signed-off-by: Jonathan Druart
--
You are receiving this mail because:
You are watching all bug changes.
--===============0752395312257034418==--
From bugzilla-daemon@bugs.koha-community.org Fri Nov 24 08:11:11 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Fri, 24 Nov 2023 07:11:10 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============7543916359014283546=="
--===============7543916359014283546==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
--- Comment #12 from Jonathan Druart ---
Ideally we should redesign C4::Auth::get_template_and_user to not pass the
lists in this case. But... well... you know... :D
--
You are receiving this mail because:
You are watching all bug changes.
--===============7543916359014283546==--
From bugzilla-daemon@bugs.koha-community.org Mon Dec 11 19:46:38 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Mon, 11 Dec 2023 18:46:37 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1083000736064108053=="
--===============1083000736064108053==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Katrin Fischer changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|Passed QA |Pushed to master
Version(s)| |24.05.00
released in| |
--
You are receiving this mail because:
You are watching all bug changes.
--===============1083000736064108053==--
From bugzilla-daemon@bugs.koha-community.org Mon Dec 11 19:46:48 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Mon, 11 Dec 2023 18:46:39 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6153239531612550197=="
--===============6153239531612550197==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
--- Comment #13 from Katrin Fischer ---
Pushed for 24.05!
Well done everyone, thank you!
--
You are receiving this mail because:
You are watching all bug changes.
--===============6153239531612550197==--
From bugzilla-daemon@bugs.koha-community.org Tue Dec 12 08:31:59 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Tue, 12 Dec 2023 07:31:58 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5043088766387410238=="
--===============5043088766387410238==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Fridolin Somers changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|Pushed to master |Pushed to stable
CC| |fridolin.somers@biblibre.co
| |m
Version(s)|24.05.00 |24.05.00,23.11.01
released in| |
--- Comment #14 from Fridolin Somers ---
Pushed to 23.11.x for 23.11.01
--
You are receiving this mail because:
You are watching all bug changes.
--===============5043088766387410238==--
From bugzilla-daemon@bugs.koha-community.org Thu Dec 14 22:07:37 2023
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Thu, 14 Dec 2023 21:07:36 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5824542160295015794=="
--===============5824542160295015794==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Lucas Gass changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |lucas@bywatersolutions.com
--- Comment #15 from Lucas Gass ---
Merge conflicts with 23.05.x, no backport. If needed please rebase.
--
You are receiving this mail because:
You are watching all bug changes.
--===============5824542160295015794==--
From bugzilla-daemon@bugs.koha-community.org Wed Mar 6 08:40:41 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Wed, 06 Mar 2024 07:40:39 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============0935647806808697909=="
--===============0935647806808697909==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D33244
M changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |schodkowy.omegi-0r@icloud.c
| |om
--- Comment #16 from M ---
Hello, this patch seems to have a side effect of the "Language" dropdown now
being awkwardly placed on center-right (regardless of whether user is logged =
in
our out). This is caused by the below CSS rules whose blame traces back to th=
is
patch, and removing them fixes the issue.
#members {
+ flex-grow: 1;
+ justify-content: flex-end;
Is this intentional change? I can only assume it's not, since I don't see any
mention of this in the discussion.
Screenshots of the problem: https://imgur.com/a/hDZvn7B
It looks like this patch conditionally hides cart+lists. The CSS above then
makes only language shown on the left, and the login on the right. But when
things aren't hidden, it changes the original position.
Should I create a new bug about this?
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============0935647806808697909==--
From bugzilla-daemon@bugs.koha-community.org Wed Mar 6 23:31:53 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Wed, 06 Mar 2024 22:31:52 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============0876581587414633905=="
--===============0876581587414633905==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
--- Comment #17 from David Cook ---
(In reply to M from comment #16)
> Should I create a new bug about this?
Yep. Create a new bug and have it depend on this one.
--
You are receiving this mail because:
You are watching all bug changes.
--===============0876581587414633905==--
From bugzilla-daemon@bugs.koha-community.org Sun Mar 17 17:59:52 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Sun, 17 Mar 2024 16:59:41 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1805312040206516060=="
--===============1805312040206516060==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Katrin Fischer changed:
What |Removed |Added
----------------------------------------------------------------------------
Blocks| |36337
Referenced Bugs:
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36337
[Bug 36337] Hiding lists with OpacPublic breaks styling for language list
--
You are receiving this mail because:
You are watching all bug changes.
--===============1805312040206516060==--
From bugzilla-daemon@bugs.koha-community.org Sun Mar 17 18:00:06 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Sun, 17 Mar 2024 17:00:05 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============2783557601808337813=="
--===============2783557601808337813==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
--- Comment #18 from Katrin Fischer ---
(In reply to David Cook from comment #17)
> (In reply to M from comment #16)
> > Should I create a new bug about this?
>
> Yep. Create a new bug and have it depend on this one.
Filed as: Bug 36337 - Hiding lists with OpacPublic breaks styling for language
list
--
You are receiving this mail because:
You are watching all bug changes.
--===============2783557601808337813==--
From bugzilla-daemon@bugs.koha-community.org Thu Dec 5 16:45:20 2024
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject:
[Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled
Date: Thu, 05 Dec 2024 15:45:01 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1639812559997750805=="
--===============1639812559997750805==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244
Lucas Gass (lukeg) changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|Pushed to stable |RESOLVED
Resolution|--- |FIXED
--
You are receiving this mail because:
You are watching all bug changes.
--===============1639812559997750805==--