Merge pull request #22825 from fappels/17_fix_receptionlist_warning
FIX: warning in reception list third-party type column
This commit is contained in:
commit
40ca15bcec
@ -1119,10 +1119,12 @@ while ($i < min($num, $limit)) {
|
|||||||
// Type ent
|
// Type ent
|
||||||
if (!empty($arrayfields['typent.code']['checked'])) {
|
if (!empty($arrayfields['typent.code']['checked'])) {
|
||||||
print '<td class="center">';
|
print '<td class="center">';
|
||||||
if (count($typenArray) == 0) {
|
if (!isset($typenArray) || empty($typenArray)) {
|
||||||
$typenArray = $formcompany->typent_array(1);
|
$typenArray = $formcompany->typent_array(1);
|
||||||
}
|
}
|
||||||
print $typenArray[$obj->typent_code];
|
if (isset($typenArray[$obj->typent_code])) {
|
||||||
|
print $typenArray[$obj->typent_code];
|
||||||
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user