Make WordPress Core

Changeset 7337


Ignore:
Timestamp:
03/16/2008 10:16:27 PM (17 years ago)
Author:
westi
Message:

Update the allowed attributes for html list elements. Fixes #6253 props andy and lloydbudd.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/kses.php

    r7107 r7337  
    271271        'u' => array(),
    272272        'ul' => array (
    273             'class' => array ()),
     273            'class' => array (),
     274            'style' => array (),
     275            'type' => array ()),
    274276        'ol' => array (
    275             'class' => array ()),
     277            'class' => array (),
     278            'start' => array (),
     279            'style' => array (),
     280            'type' => array ()),
    276281        'var' => array ());
    277282    /**
Note: See TracChangeset for help on using the changeset viewer.