Bugzilla – Attachment #80762: 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 89-98 sub GetDescriptionByKohaField {
Link Here
89
} elsif ($av->{lib}) {
89
} elsif ($av->{lib}) {
90
$av_check = $av->{lib}
90
$av_check = $av->{lib}
91
}
91
}
92
} else {
92
} elsif ($av->{lib}) {
93
if ($av->{lib}) {
93
$av_check = $av->{lib}
94
$av_check = $av->{lib}
95
}
96
}
94
}
97
return $av_check
95
return $av_check
98
}
96
}
99
-
Return to
bug 21503