From 3e890f0c06e3e7509321a533ba4a59c994453771 Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Tue, 3 Sep 2024 20:31:21 +0000 Subject: [PATCH] Bug 13342: Not logged user can place a review/comment We are able to comment a notice even when no user is connected To test 1. Log in to OPAC. 2. Find a Biblio and open the comments tab. 3. Open another tab/window, and log out from the account. 4. Return to the first tab. 5. Click "Post your comments on this title." --> We are able to post a comment 6. Apply the patch 7. Repeat step 1, 2, 3, 4, 5 --> You should be redirected to the login page. Signed-off-by: David Cook --- opac/opac-review.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/opac/opac-review.pl b/opac/opac-review.pl index e948e1cf16..f69740b2c2 100755 --- a/opac/opac-review.pl +++ b/opac/opac-review.pl @@ -39,7 +39,6 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user( template_name => "opac-review.tt", query => $query, type => "opac", - authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ), } ); -- 2.39.2