Index: trunk/phase3/includes/Parser.php |
— | — | @@ -2413,7 +2413,7 @@ |
2414 | 2414 | $noparse = true; |
2415 | 2415 | $found = true; |
2416 | 2416 | $text = $linestart . |
2417 | | - "\{\{$part1}}" . |
| 2417 | + '{{' . $part1 . '}}' . |
2418 | 2418 | '<!-- WARNING: template loop detected -->'; |
2419 | 2419 | wfDebug( "$fname: template loop broken at '$part1'\n" ); |
2420 | 2420 | } else { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -278,6 +278,7 @@ |
279 | 279 | on Special:Upload as well as edit, rearrange edit page pieces a bit. |
280 | 280 | Copyright warning now above the buttons to ensure it's visible, |
281 | 281 | template list at the bottom so it can grow. |
| 282 | +* Tweak infinite-template-handling loop for PHP 5.1.1 string handling change |
282 | 283 | |
283 | 284 | |
284 | 285 | === Caveats === |