Bugzilla – Attachment 80762 Details for
Bug 21503
Update AuthorisedValues.pm to fall back to code if description doesn't exist
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21503: Simplify If Else logic
Bug-21503-Simplify-If-Else-logic.patch (text/plain), 867 bytes, created by
Christopher Brannon
on 2018-10-17 21:53:47 UTC
(
hide
)
Description:
Bug 21503: Simplify If Else logic
Filename:
MIME Type:
Creator:
Christopher Brannon
Created:
2018-10-17 21:53:47 UTC
Size:
867 bytes
patch
obsolete
>From 3b79ee42cc4738b83882f550f93130865cf8da49 Mon Sep 17 00:00:00 2001 >From: Christopher Brannon <cbrannon@cdalibrary.org> >Date: Wed, 17 Oct 2018 21:52:27 +0000 >Subject: [PATCH] Bug 21503: Simplify If Else logic > >--- > Koha/Template/Plugin/AuthorisedValues.pm | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > >diff --git a/Koha/Template/Plugin/AuthorisedValues.pm b/Koha/Template/Plugin/AuthorisedValues.pm >index a926e0fba4..34cc61998b 100644 >--- a/Koha/Template/Plugin/AuthorisedValues.pm >+++ b/Koha/Template/Plugin/AuthorisedValues.pm >@@ -89,10 +89,8 @@ sub GetDescriptionByKohaField { > } elsif ($av->{lib}) { > $av_check = $av->{lib} > } >- } else { >- if ($av->{lib}) { >- $av_check = $av->{lib} >- } >+ } elsif ($av->{lib}) { >+ $av_check = $av->{lib} > } > return $av_check > } >-- >2.11.0
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 21503
:
80151
|
80152
|
80233
|
80439
|
80521
|
80544
|
80545
|
80558
|
80561
|
80562
|
80563
|
80601
|
80758
|
80759
|
80762
|
101323
|
101324
|
101325
|
101326
|
101327
|
101328
|
101524
|
101525
|
101526
|
101527
|
101528
|
101529
|
101533
|
101534
|
101535