Bugzilla – Attachment 186007 Details for
Bug 32748
Library limitations will cause data loss when editing items
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32748: (follow-up) Fix perlcritic error
Bug-32748-follow-up-Fix-perlcritic-error.patch (text/plain), 944 bytes, created by
Thibaud Guillot (thibaud_g)
on 2025-09-01 09:56:29 UTC
(
hide
)
Description:
Bug 32748: (follow-up) Fix perlcritic error
Filename:
MIME Type:
Creator:
Thibaud Guillot (thibaud_g)
Created:
2025-09-01 09:56:29 UTC
Size:
944 bytes
patch
obsolete
>From 75f4331ed0ab99637c332230569987bd6ac98fc3 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer@bsz-bw.de> >Date: Fri, 28 Jul 2023 12:02:35 +0000 >Subject: [PATCH] Bug 32748: (follow-up) Fix perlcritic error > >--- > C4/Koha.pm | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/C4/Koha.pm b/C4/Koha.pm >index 6fe447e6e9e..c9789e9baea 100644 >--- a/C4/Koha.pm >+++ b/C4/Koha.pm >@@ -512,7 +512,8 @@ sub GetAuthorisedValues { > my $category = shift // ''; # optional parameter > my $opac = shift ? 1 : 0; # normalise to be safe > my $options = shift // ''; >- my $no_limit = $options->{'no_limit'} if $options; #optional parameter to ignore library limitation >+ my $no_limit; >+ if ($options) { $no_limit = $options->{'no_limit'}; } #optional parameter to ignore library limitation > > # Is this cached already? > my $branch_limit = C4::Context::mybranch(); >-- >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 32748
:
148409
|
148491
|
150155
|
151989
|
154039
|
154040
|
154041
|
154042
|
186006
|
186007
|
186008
|
186009
|
186303
|
186307
|
186308
|
186312
|
186313
|
186314
|
186315
|
186316
|
186317