@@ -2850,7 +2850,7 @@ discard block |
||
| 2850 | 2850 | foreach ($this->matches as $m) { |
| 2851 | 2851 | $p = $m; |
| 2852 | 2852 | while (isset($p->previousSibling) && $p->previousSibling->nodeType == XML_TEXT_NODE) { |
| 2853 | - $p = $p->previousSibling; |
|
| 2853 | + $p = $p->previousSibling; |
|
| 2854 | 2854 | $buffer .= $p->textContent; |
| 2855 | 2855 | } |
| 2856 | 2856 | } |
@@ -2869,7 +2869,7 @@ discard block |
||
| 2869 | 2869 | foreach ($this->matches as $m) { |
| 2870 | 2870 | $n = $m; |
| 2871 | 2871 | while (isset($n->nextSibling) && $n->nextSibling->nodeType == XML_TEXT_NODE) { |
| 2872 | - $n = $n->nextSibling; |
|
| 2872 | + $n = $n->nextSibling; |
|
| 2873 | 2873 | $buffer .= $n->textContent; |
| 2874 | 2874 | } |
| 2875 | 2875 | } |