Bugzilla – Attachment 140463 Details for
Bug 31535
Fix a staff warn or two
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 31535: Fix warning - uninitialized value $mode in string ne (addbiblio.pl)
Bug-31535-Fix-warning---uninitialized-value-mode-i.patch (text/plain), 1.38 KB, created by
Joonas Kylmälä
on 2022-09-12 15:29:11 UTC
(
hide
)
Description:
Bug 31535: Fix warning - uninitialized value $mode in string ne (addbiblio.pl)
Filename:
MIME Type:
Creator:
Joonas Kylmälä
Created:
2022-09-12 15:29:11 UTC
Size:
1.38 KB
patch
obsolete
>From 9574a752b0bf11371418b9f1526842069129b398 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Thu, 8 Sep 2022 14:03:51 +0000 >Subject: [PATCH] Bug 31535: Fix warning - uninitialized value $mode in string > ne (addbiblio.pl) >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Line number varies across versions. (Should be L887 now.) >Resolves: > Use of uninitialized value $mode in string ne at /usr/share/koha/cataloguing/addbiblio.pl line 845. > >No test plan here. This is trivial. Read the patch. > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> > >Signed-off-by: Joonas Kylmälä <joonas.kylmala@iki.fi> >--- > cataloguing/addbiblio.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/cataloguing/addbiblio.pl b/cataloguing/addbiblio.pl >index 92abe81082..b1448a4bee 100755 >--- a/cataloguing/addbiblio.pl >+++ b/cataloguing/addbiblio.pl >@@ -715,7 +715,7 @@ my $parentbiblio = $input->param('parentbiblionumber'); > my $breedingid = $input->param('breedingid'); > my $z3950 = $input->param('z3950'); > my $op = $input->param('op') // q{}; >-my $mode = $input->param('mode'); >+my $mode = $input->param('mode') // q{}; > my $frameworkcode = $input->param('frameworkcode'); > my $redirect = $input->param('redirect'); > my $searchid = $input->param('searchid') // ""; >-- >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 31535
:
140343
|
140362
|
140363
|
140364
| 140463 |
140464
|
140465