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

(-)a/Koha/Object.pm (-2 / +1 lines)
Lines 918-924 sub AUTOLOAD { Link Here
918
                return $self->_result()->get_column($method);
918
                return $self->_result()->get_column($method);
919
            }
919
            }
920
        };
920
        };
921
        no strict 'refs';
921
        no strict 'refs'; ## no critic (strict)
922
        *{$AUTOLOAD} = $accessor;
922
        *{$AUTOLOAD} = $accessor;
923
        return $accessor->( $self, @_ );
923
        return $accessor->( $self, @_ );
924
    }
924
    }
925
- 

Return to bug 33745