Bugzilla – Attachment #101328: Bug 21503: Simplify If Else logic for
bug #21503
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
View
|
Details
|
Raw Unified
| Return to
bug 21503
Collapse All
|
Expand All
(-)
a/Koha/Template/Plugin/AuthorisedValues.pm (-5 / +2 lines)
Lines 88-97 sub GetDescriptionByKohaField {
Link Here
88
} elsif ($av->{lib}) {
88
} elsif ($av->{lib}) {
89
$av_check = $av->{lib}
89
$av_check = $av->{lib}
90
}
90
}
91
} else {
91
} elsif ($av->{lib}) {
92
if ($av->{lib}) {
92
$av_check = $av->{lib}
93
$av_check = $av->{lib}
94
}
95
}
93
}
96
return $av_check
94
return $av_check
97
}
95
}
98
-
Return to
bug 21503