@@ 2818-2820 (lines=3) @@ | ||
2815 | $content = $textarr[$i]; |
|
2816 | ||
2817 | // If we're in an ignore block, wait until we find its closing tag |
|
2818 | if ( '' == $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) { |
|
2819 | $ignore_block_element = $matches[1]; |
|
2820 | } |
|
2821 | ||
2822 | // If it's not a tag and not in ignore block |
|
2823 | if ( '' == $ignore_block_element && strlen( $content ) > 0 && '<' != $content[0] ) { |
|
@@ 5097-5099 (lines=3) @@ | ||
5094 | $content = $textarr[$i]; |
|
5095 | ||
5096 | // If we're in an ignore block, wait until we find its closing tag. |
|
5097 | if ( '' == $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) { |
|
5098 | $ignore_block_element = $matches[1]; |
|
5099 | } |
|
5100 | ||
5101 | // If it's not a tag and not in ignore block. |
|
5102 | if ( '' == $ignore_block_element && strlen( $content ) > 0 && '<' != $content[0] ) { |