Make WordPress Core


Ignore:
Timestamp:
04/29/2020 03:32:19 PM (6 years ago)
Author:
whyisjake
Message:

Block Editor: Coding standards, properly escape class names.

Props: aduth, noisysocks, pento, talldanwp, jorgefilipecosta, whyisjake, ellatrix, ehti.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/rss.php

    r47199 r47636  
    9393        }
    9494
    95         return "<ul class='{$class}'>{$list_items}</ul>";
     95        return sprintf( "<ul class='%s'>%s</ul>", esc_attr( $class ), $list_items );
    9696}
    9797
Note: See TracChangeset for help on using the changeset viewer.