Skip to content

Commit

Permalink
Item13385: disable non-standard table separator syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Crawford Currie committed Jun 20, 2015
1 parent 5c72c60 commit b7ad82a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/lib/Foswiki/Tables/Parser.pm
Expand Up @@ -186,8 +186,10 @@ sub parse {

if ( length($line) ) {

$line =~ s/\\\|/\007/g; # protect \| from split
# Expand comments again after we split
# See Item13385 for why this is commented out
#$line =~ s/\\\|/\007/g; # protect \| from split

# Expand comments again after we split
my @cols =
map { _rewrite( $_, \@comments ) }
map { s/\007/|/g; $_ }
Expand Down

0 comments on commit b7ad82a

Please sign in to comment.