View | Details | Raw Unified | Return to bug 24361
Collapse All | Expand All

(-)a/C4/Items.pm (-2 / +5 lines)
Lines 859-865 sub GetItemsForInventory { Link Here
859
859
860
        # Auth values
860
        # Auth values
861
        foreach (keys %$row) {
861
        foreach (keys %$row) {
862
            if (defined($avmapping->{"items.$_,".$row->{'frameworkcode'}.",".$row->{$_}})) {
862
            if (
863
                defined(
864
                    $avmapping->{ "items.$_," . $row->{'frameworkcode'} . "," . ( $row->{$_} // q{} ) }
865
                )
866
            ) {
863
                $row->{$_} = $avmapping->{"items.$_,".$row->{'frameworkcode'}.",".$row->{$_}};
867
                $row->{$_} = $avmapping->{"items.$_,".$row->{'frameworkcode'}.",".$row->{$_}};
864
            }
868
            }
865
        }
869
        }
866
- 

Return to bug 24361