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

(-)a/C4/ItemCirculationAlertPreference.pm (-3 / +2 lines)
Lines 167-173 sub create { Link Here
167
            return $class->new($self);
167
            return $class->new($self);
168
        } else {
168
        } else {
169
            carp $dbh->errstr;
169
            carp $dbh->errstr;
170
            return undef;
170
            return;
171
        }
171
        }
172
    }
172
    }
173
}
173
}
Lines 404-410 sub AUTOLOAD { Link Here
404
    if (exists $self->{$attr}) {
404
    if (exists $self->{$attr}) {
405
        return $self->{$attr};
405
        return $self->{$attr};
406
    } else {
406
    } else {
407
        return undef;
407
        return;
408
    }
408
    }
409
}
409
}
410
410
411
- 

Return to bug 6679