Index: trunk/phase3/includes/Parser.php |
— | — | @@ -1407,7 +1407,11 @@ |
1408 | 1408 | # Still some problems for cases where the ] is meant to be outside punctuation, |
1409 | 1409 | # and no image is in sight. See bug 2095. |
1410 | 1410 | # |
1411 | | - if( $text !== '' && preg_match( "/^\](.*)/s", $m[3], $n ) ) { |
| 1411 | + if( $text !== '' && |
| 1412 | + preg_match( "/^\](.*)/s", $m[3], $n ) && |
| 1413 | + strpos($text, '[') !== false |
| 1414 | + ) |
| 1415 | + { |
1412 | 1416 | $text .= ']'; # so that replaceExternalLinks($text) works later |
1413 | 1417 | $m[3] = $n[1]; |
1414 | 1418 | } |