Index: trunk/phase3/includes/Sanitizer.php |
— | — | @@ -357,7 +357,7 @@ |
358 | 358 | 'h2', 'h3', 'h4', 'h5', 'h6', 'cite', 'code', 'em', 's', |
359 | 359 | 'strike', 'strong', 'tt', 'var', 'div', 'center', |
360 | 360 | 'blockquote', 'ol', 'ul', 'dl', 'table', 'caption', 'pre', |
361 | | - 'ruby', 'rt' , 'rb' , 'rp', 'p', 'span', 'u' |
| 361 | + 'ruby', 'rt' , 'rb' , 'rp', 'p', 'span', 'u', 'abbr' |
362 | 362 | ); |
363 | 363 | $htmlsingle = array( |
364 | 364 | 'br', 'hr', 'li', 'dt', 'dd' |
— | — | @@ -1200,7 +1200,7 @@ |
1201 | 1201 | # samp |
1202 | 1202 | # kbd |
1203 | 1203 | 'var' => $common, |
1204 | | - # abbr |
| 1204 | + 'abbr' => $common, |
1205 | 1205 | # acronym |
1206 | 1206 | |
1207 | 1207 | # 9.2.2 |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -179,6 +179,7 @@ |
180 | 180 | to {{ns:...}} |
181 | 181 | * (bug 16322) Allow maintenance scripts to accept DB user/pass over input or params |
182 | 182 | * (bug 18566) Maintenance script to un/protect pages |
| 183 | +* (bug 671) The HTML <abbr> tag is now permitted. |
183 | 184 | |
184 | 185 | === Bug fixes in 1.16 === |
185 | 186 | |