Index: branches/REL1_4/phase3/includes/Parser.php |
— | — | @@ -2193,14 +2193,14 @@ |
2194 | 2194 | 'h2', 'h3', 'h4', 'h5', 'h6', 'cite', 'code', 'em', 's', |
2195 | 2195 | 'strike', 'strong', 'tt', 'var', 'div', 'center', |
2196 | 2196 | 'blockquote', 'ol', 'ul', 'dl', 'table', 'caption', 'pre', |
2197 | | - 'ruby', 'rt' , 'rb' , 'rp', 'p' |
| 2197 | + 'ruby', 'rt' , 'rb' , 'rp', 'p', 'span' |
2198 | 2198 | ); |
2199 | 2199 | $htmlsingle = array( |
2200 | 2200 | 'br', 'hr', 'li', 'dt', 'dd' |
2201 | 2201 | ); |
2202 | 2202 | $htmlnest = array( # Tags that can be nested--?? |
2203 | 2203 | 'table', 'tr', 'td', 'th', 'div', 'blockquote', 'ol', 'ul', |
2204 | | - 'dl', 'font', 'big', 'small', 'sub', 'sup' |
| 2204 | + 'dl', 'font', 'big', 'small', 'sub', 'sup', 'span' |
2205 | 2205 | ); |
2206 | 2206 | $tabletags = array( # Can only appear inside table |
2207 | 2207 | 'td', 'th', 'tr' |
Index: branches/REL1_4/phase3/RELEASE-NOTES |
— | — | @@ -158,7 +158,9 @@ |
159 | 159 | * (bug 1162) fix five-tilde date inserter |
160 | 160 | * Add raw signatures option for those who simply must have cute sigs |
161 | 161 | * (bug 1164) Let wikitext be used in Loginprompt and Loginend messages |
| 162 | +* Add the dreaded <span> to the HTML whitelist |
162 | 163 | |
| 164 | + |
163 | 165 | === Caveats === |
164 | 166 | |
165 | 167 | Some output, particularly involving user-supplied inline HTML, may not |