Make WordPress Core


Ignore:
Timestamp:
11/11/2008 09:39:42 AM (18 years ago)
Author:
azaozz
Message:

QE fixes: don't display-filter titles, show QE for newly added cats and tags, fixes #8146

File:
1 edited

Legend:

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

    r9604 r9606  
    611611                                        }
    612612                                        $out .= '<div class="hidden" id="inline_' . $tag->term_id . '">';
    613                                         $out .= '<div class="name">' . $name . '</div>';
     613                                        $out .= '<div class="name">' . attribute_escape($tag->name) . '</div>';
    614614                                        $out .= '<div class="slug">' . $tag->slug . '</div></div></td>';
    615615                                        break;
     
    11511151                return;
    11521152
    1153         $title = _draft_or_post_title($post->ID);
     1153        $title = attribute_escape($post->post_title);
    11541154
    11551155        echo '
Note: See TracChangeset for help on using the changeset viewer.