View | Details | Raw Unified | Return to bug 36328
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
    tag     => {},                                               # uses defaults
31
    tag     => {},                                               # uses defaults
32
    comment => { allow => [qw( br b i em big small strong )], },
32
    comment => { allow => [qw[ p b i u hr br em big small strong span div ]] },
33
    staff   => {
33
    staff   => {
34
        default => [ 1 => { '*' => 1 } ],
34
        default => [ 1 => { '*' => 1 } ],
35
        comment => 1,
35
        comment => 1,
36
- 

Return to bug 36328