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

(-)a/C4/Scrubber.pm (-2 / +1 lines)
Lines 29-35 use C4::Context; Link Here
29
my %scrubbertypes = (
29
my %scrubbertypes = (
30
    default => {},    # place holder, default settings are below as fallbacks in call to constructor
30
    default => {},    # place holder, default settings are below as fallbacks in call to constructor
31
    comment => { allow => [qw( br b i em big small strong )], },
31
    comment => { allow => [qw( br b i em big small strong )], },
32
    note    => { allow => [qw[ br b i em big small strong u hr span div p ol ul li ]] },
32
    note    => { allow => [qw[ br b i em big small strong u hr span div p ol ul li dl dt dd ]] },
33
);
33
);
34
34
35
sub new {
35
sub new {
36
- 

Return to bug 40079