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

(-)a/t/lib/QA/TemplateFilters.pm (-2 / +1 lines)
Lines 77-83 sub _process_tt_content { Link Here
77
              if $line =~ m{\[%(\s|-|~)*USE raw(\s|-|~)*%\]};    # Does [% Use raw %] exist?
77
              if $line =~ m{\[%(\s|-|~)*USE raw(\s|-|~)*%\]};    # Does [% Use raw %] exist?
78
78
79
            my $e;
79
            my $e;
80
            if ( $line =~ qr{<a href="([^"]+)} ) {
80
            while ( $line =~ m{<a href="([^"]+)}g ) {
81
                my $to_uri_escape = $1;
81
                my $to_uri_escape = $1;
82
                while (
82
                while (
83
                    $to_uri_escape =~ m{
83
                    $to_uri_escape =~ m{
84
- 

Return to bug 38872