Index: trunk/phase3/includes/Sanitizer.php |
— | — | @@ -367,7 +367,7 @@ |
368 | 368 | 'h2', 'h3', 'h4', 'h5', 'h6', 'cite', 'code', 'em', 's', |
369 | 369 | 'strike', 'strong', 'tt', 'var', 'div', 'center', |
370 | 370 | 'blockquote', 'ol', 'ul', 'dl', 'table', 'caption', 'pre', |
371 | | - 'ruby', 'rt' , 'rb' , 'rp', 'p', 'span', 'u', 'abbr' |
| 371 | + 'ruby', 'rt' , 'rb' , 'rp', 'p', 'span', 'u', 'abbr', 'dfn' |
372 | 372 | ); |
373 | 373 | $htmlsingle = array( |
374 | 374 | 'br', 'hr', 'li', 'dt', 'dd' |
— | — | @@ -1442,7 +1442,7 @@ |
1443 | 1443 | 'em' => $common, |
1444 | 1444 | 'strong' => $common, |
1445 | 1445 | 'cite' => $common, |
1446 | | - # dfn |
| 1446 | + 'dfn' => $common, |
1447 | 1447 | 'code' => $common, |
1448 | 1448 | # samp |
1449 | 1449 | # kbd |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -119,6 +119,7 @@ |
120 | 120 | because it encourages edits to be marked minor accidentally and it can be |
121 | 121 | easily replicated by custom user scripts for those who really want it. |
122 | 122 | * Non-file pages can no longer be moved to the file namespace, nor vice versa. |
| 123 | +* (bug 671) The <dfn> element has been whitelisted in user input. |
123 | 124 | |
124 | 125 | === Bug fixes in 1.17 === |
125 | 126 | * (bug 17560) Half-broken deletion moved image files to deletion archive |