Ticket #21825: 21825.diff
File 21825.diff, 5.0 KB (added by , 12 years ago) |
---|
-
wp-includes/kses.php
49 49 * @since 2.0.0 50 50 */ 51 51 $allowedposttags = array( 52 'address' => array(), 52 'address' => array( 53 'class' => true, 54 ), 53 55 'a' => array( 54 56 'class' => true, 55 57 'href' => true, … … 58 60 'rel' => true, 59 61 'rev' => true, 60 62 'name' => true, 63 'style' => true, 61 64 'target' => true, 62 65 ), 63 66 'abbr' => array( … … 65 68 'title' => true, 66 69 ), 67 70 'acronym' => array( 71 'class' => true, 68 72 'title' => true, 69 73 ), 74 'area' => array( 75 'alt' => true, 76 'class' => true, 77 'coords' => true, 78 'href' => true, 79 'nohref' => true, 80 'shape' => true, 81 'style' => true, 82 'target' => true, 83 'title' => true, 84 ), 70 85 'article' => array( 71 86 'align' => true, 72 87 'class' => true, … … 83 98 'style' => true, 84 99 'xml:lang' => true, 85 100 ), 86 'b' => array(), 87 'big' => array(), 101 'b' => array( 102 'class' => true, 103 ), 104 'big' => array( 105 'class' => true, 106 ), 88 107 'blockquote' => array( 89 108 'id' => true, 90 109 'cite' => true, 91 110 'class' => true, 92 111 'lang' => true, 112 'style' => true, 93 113 'xml:lang' => true, 94 114 ), 95 115 'br' => array ( 96 116 'class' => true, 117 'style' => true, 97 118 ), 98 119 'button' => array( 120 'class' => true, 99 121 'disabled' => true, 100 122 'name' => true, 101 123 'type' => true, … … 112 134 'title' => true, 113 135 ), 114 136 'code' => array ( 137 'class' => true, 115 138 'style' => true, 116 139 ), 117 140 'col' => array( 118 141 'align' => true, 119 142 'char' => true, 120 143 'charoff' => true, 144 'class' => true, 121 145 'span' => true, 122 146 'dir' => true, 123 147 'style' => true, … … 125 149 'width' => true, 126 150 ), 127 151 'del' => array( 152 'class' => true, 128 153 'datetime' => true, 129 154 ), 130 'dd' => array(), 155 'dd' => array( 156 'class' => true, 157 ), 131 158 'details' => array( 132 159 'align' => true, 133 160 'class' => true, … … 145 172 'style' => true, 146 173 'xml:lang' => true, 147 174 ), 148 'dl' => array(), 149 'dt' => array(), 150 'em' => array(), 175 'dl' => array( 176 'class' => true, 177 ), 178 'dt' => array( 179 'class' => true, 180 ), 181 'em' => array( 182 'class' => true, 183 ), 151 184 'fieldset' => array(), 152 185 'figure' => array( 153 186 'align' => true, … … 166 199 'xml:lang' => true, 167 200 ), 168 201 'font' => array( 202 'class' => true, 169 203 'color' => true, 170 204 'face' => true, 171 205 'size' => true, … … 246 280 'size' => true, 247 281 'width' => true, 248 282 ), 249 'i' => array(), 283 'i' => array ( 284 'class' => true, 285 ), 250 286 'img' => array( 251 287 'alt' => true, 252 288 'align' => true, … … 258 294 'vspace' => true, 259 295 'src' => true, 260 296 'style' => true, 297 'title' => true, 298 'usemap' => true, 261 299 'width' => true, 262 300 ), 263 301 'ins' => array( 302 'class' => true, 264 303 'datetime' => true, 265 304 'cite' => true, 266 305 ), 267 'kbd' => array(), 306 'kbd' => array ( 307 'class' => true, 308 ), 268 309 'label' => array( 269 310 'for' => true, 270 311 ), … … 274 315 'li' => array ( 275 316 'align' => true, 276 317 'class' => true, 318 'id' => true, 319 'style' => true, 277 320 ), 321 'map' => array( 322 'class' => true, 323 'id' => true, 324 'name' => true, 325 'style' => true, 326 'title' => true, 327 ), 278 328 'menu' => array ( 279 329 'class' => true, 280 330 'style' => true, … … 292 342 'class' => true, 293 343 'align' => true, 294 344 'dir' => true, 345 'id' => true, 295 346 'lang' => true, 296 347 'style' => true, 297 348 'xml:lang' => true, 298 349 ), 299 350 'pre' => array( 351 'class' => true, 300 352 'style' => true, 301 353 'width' => true, 302 354 ), 303 355 'q' => array( 304 356 'cite' => true, 357 'class' => true, 305 358 ), 306 's' => array(), 359 's' => array( 360 'class' => true, 361 ), 307 362 'span' => array ( 308 363 'class' => true, 309 364 'dir' => true, 310 365 'align' => true, 366 'id' => true, 311 367 'lang' => true, 312 368 'style' => true, 313 369 'title' => true, … … 321 377 'style' => true, 322 378 'xml:lang' => true, 323 379 ), 324 'strike' => array(), 325 'strong' => array(), 326 'sub' => array(), 380 'small' => array ( 381 'class' => true, 382 ), 383 'strike' => array ( 384 'class' => true, 385 ), 386 'strong' => array ( 387 'class' => true, 388 ), 389 'sub' => array ( 390 'class' => true, 391 ), 327 392 'summary' => array( 328 393 'align' => true, 329 394 'class' => true, … … 332 397 'style' => true, 333 398 'xml:lang' => true, 334 399 ), 335 'sup' => array(), 400 'sup' => array ( 401 'class' => true, 402 ), 336 403 'table' => array( 337 404 'align' => true, 338 405 'bgcolor' => true, … … 351 418 'align' => true, 352 419 'char' => true, 353 420 'charoff' => true, 421 'class' => true, 354 422 'valign' => true, 355 423 ), 356 424 'td' => array( … … 420 488 'style' => true, 421 489 'valign' => true, 422 490 ), 423 'tt' => array(), 424 'u' => array(), 491 'tt' => array ( 492 'class' => true, 493 ), 494 'u' => array ( 495 'class' => true, 496 ), 425 497 'ul' => array ( 426 498 'class' => true, 499 'id' => true, 427 500 'style' => true, 428 501 'type' => true, 429 502 ), 430 503 'ol' => array ( 431 504 'class' => true, 505 'id' => true, 432 506 'start' => true, 433 507 'style' => true, 434 508 'type' => true, 435 509 ), 436 'var' => array(), 510 'var' => array( 511 'class' => true, 512 ), 437 513 ); 438 514 439 515 /**