Skip to content

Commit

Permalink
Fix double-escaping of left brackets.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonjensen committed Jul 17, 2001
1 parent f5c09e5 commit 9b70ae7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/lib/UI/pages/admin/flex_select.html
Original file line number Diff line number Diff line change
Expand Up @@ -514,8 +514,9 @@
$extra .= " $1" while $filter =~ s/(v?align=\w+)//i;
#Log("$i filter = $filter");

$_ = $Tag->filter($filter, $_);
s/\[/[/g;
$out .= "<TD$extra>" . $Tag->filter($filter, $_) . "</TD>";
$out .= "<TD$extra>$_</TD>";
$i++;
}
return $out . "\n";
Expand Down

0 comments on commit 9b70ae7

Please sign in to comment.