Index: trunk/phase3/includes/Sanitizer.php |
— | — | @@ -577,6 +577,9 @@ |
578 | 578 | # Templates and links may be expanded in later parsing, |
579 | 579 | # creating invalid or dangerous output. Suppress this. |
580 | 580 | $value = strtr( $value, array( |
| 581 | + '<' => '<', // This should never happen, |
| 582 | + '>' => '>', // we've received invalid input |
| 583 | + '"' => '"', // which should have been escaped. |
581 | 584 | '{' => '{', |
582 | 585 | '[' => '[', |
583 | 586 | "''" => '''', |