Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -236,6 +236,7 @@ |
237 | 237 | * (bug 28372) Fix bogus link to suppressed file versions in ForeignDBRepo |
238 | 238 | * (bug 27473) Fix regression: bold, italic no longer interfere with linktrail for ca, kaa |
239 | 239 | * (bug 28444) Fix regression: edit-on-doubleclick retains revision id again |
| 240 | +* ' character entity is now allowed in wikitext |
240 | 241 | |
241 | 242 | === API changes in 1.18 === |
242 | 243 | * (bug 26339) Throw warning when truncating an overlarge API result |
Index: trunk/phase3/includes/Sanitizer.php |
— | — | @@ -45,6 +45,7 @@ |
46 | 46 | /** |
47 | 47 | * List of all named character entities defined in HTML 4.01 |
48 | 48 | * http://www.w3.org/TR/html4/sgml/entities.html |
| 49 | + * As well as ' which is only defined starting in XHTML1. |
49 | 50 | * @private |
50 | 51 | */ |
51 | 52 | static $htmlEntities = array( |
— | — | @@ -63,6 +64,7 @@ |
64 | 65 | 'amp' => 38, |
65 | 66 | 'and' => 8743, |
66 | 67 | 'ang' => 8736, |
| 68 | + 'apos' => 39, |
67 | 69 | 'Aring' => 197, |
68 | 70 | 'aring' => 229, |
69 | 71 | 'asymp' => 8776, |