Skip to content

Commit

Permalink
Item2183: Fix up spaces/tabs and add a missing semicolon
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@5354 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
GeorgeClark authored and GeorgeClark committed Oct 22, 2009
1 parent b06825c commit f8b1a5a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions WysiwygPlugin/lib/Foswiki/Plugins/WysiwygPlugin.pm
Expand Up @@ -694,7 +694,7 @@ br=clear;
col=char,charoff,span,valign,width;
colgroup=align,char,charoff,span,valign,width;
dir=compact;
div=align,style;
div=align,style;
dl=compact;
font=size,face;
h\d=align;
Expand Down Expand Up @@ -728,10 +728,10 @@ DEFAULT
}
foreach my $row (@protectedByAttr) {
if ( $tag =~ /^$row->{tag}$/i ) {
if ( $attr =~ /^($row->{attrs})$/i ) {
#print STDERR "Protecting $tag with $attr matches $row->{attrs} \n"; #debug
return 1
}
if ( $attr =~ /^($row->{attrs})$/i ) {
#print STDERR "Protecting $tag with $attr matches $row->{attrs} \n"; #debug
return 1;
}
}
}
return 0;
Expand Down

0 comments on commit f8b1a5a

Please sign in to comment.