Make WordPress Core


Ignore:
Timestamp:
05/05/2009 07:43:53 PM (16 years ago)
Author:
markjaquith
Message:

_a(), _ea(), _xa(), attr() are now esc_attr(), esc_attr_e(), esc_attr_x(), esc_attr() -- still short, but less cryptic. see #9650

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/taxonomy.php

    r11109 r11204  
    223223        $tag_names[] = $tag->name;
    224224    $tags_to_edit = join( ',', $tag_names );
    225     $tags_to_edit = attr( $tags_to_edit );
     225    $tags_to_edit = esc_attr( $tags_to_edit );
    226226    $tags_to_edit = apply_filters( 'terms_to_edit', $tags_to_edit, $taxonomy );
    227227
Note: See TracChangeset for help on using the changeset viewer.