Bugzilla – Attachment 166188 Details for
Bug 36785
Tagging: Resolve warning about unrecognized biblionumber
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36785: Do not pass biblionumber to get_approval_rows
Bug-36785-Do-not-pass-biblionumber-to-getapprovalr.patch (text/plain), 1.48 KB, created by
Marcel de Rooy
on 2024-05-06 09:16:45 UTC
(
hide
)
Description:
Bug 36785: Do not pass biblionumber to get_approval_rows
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2024-05-06 09:16:45 UTC
Size:
1.48 KB
patch
obsolete
>From 9ff387c63048129be2d918559585a2f4ac63898c Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Mon, 6 May 2024 09:04:26 +0000 >Subject: [PATCH] Bug 36785: Do not pass biblionumber to get_approval_rows >Content-Type: text/plain; charset=utf-8 > >Resolve: >[WARN] get_approval_rows received unreconized argument key 'biblionumber'. at /usr/share/koha/opac/opac-tags.pl line 336. > >Test plan: >Visit opac-tags.pl?biblionumber=SOME_NUMBER >With this patch, you should no longer find a warning in the logs. > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > opac/opac-tags.pl | 9 ++++----- > 1 file changed, 4 insertions(+), 5 deletions(-) > >diff --git a/opac/opac-tags.pl b/opac/opac-tags.pl >index c346417e76..2c2fcfcdd8 100755 >--- a/opac/opac-tags.pl >+++ b/opac/opac-tags.pl >@@ -332,11 +332,10 @@ if ($add_op) { > my $arghash = {approved=>1, limit=>$limit, 'sort'=>'-weight_total'}; > $arghash->{'borrowernumber'} = $loggedinuser if $mine; > # ($openadds) or $arghash->{approved} = 1; >- if ($arg = $query->param('tag')) { >- $arghash->{term} = $arg; >- } elsif ($arg = $query->param('biblionumber')) { >- $arghash->{biblionumber} = $arg; >- } >+ if ( $arg = $query->param('tag') ) { >+ $arghash->{term} = $arg; >+ } >+ # Bug 36785: Do not pass biblionumber: get_approval_rows does not 'recognize' biblionumber > $results = get_approval_rows($arghash); > stratify_tags(10, $results); # work out the differents sizes for things > my $count = scalar @$results; >-- >2.30.2
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 36785
:
166188
|
166189
|
166755
|
166756