Make WordPress Core

Ticket #33607: 33607.patch

File 33607.patch, 1.2 KB (added by Cheffheid, 11 years ago)

Fixes headings on Tools page, needs CSS patch on #33559 to put it back the way it looked before

  • wp-admin/tools.php

     
    3737
    3838<?php if ( current_user_can('edit_posts') ) : ?>
    3939<div class="card pressthis">
    40         <h3><?php _e('Press This') ?></h3>
     40        <h2><?php _e('Press This') ?></h2>
    4141        <p><?php _e( 'Press This is a little tool that lets you grab bits of the web and create new posts with ease.' );?></p>
    4242        <p><?php _e( 'Use Press This to clip text, images and videos from any web page. Then edit and add more straight from Press This before you save or publish it in a post on your site.' ); ?></p>
    4343
     
    100100$tags = get_taxonomy('post_tag');
    101101if ( current_user_can($cats->cap->manage_terms) || current_user_can($tags->cap->manage_terms) ) : ?>
    102102<div class="card">
    103     <h3 class="title"><?php _e( 'Categories and Tags Converter' ) ?></h3>
     103    <h2 class="title"><?php _e( 'Categories and Tags Converter' ) ?></h2>
    104104    <p><?php printf( __('If you want to convert your categories to tags (or vice versa), use the <a href="%s">Categories and Tags Converter</a> available from the Import screen.'), 'import.php' ); ?></p>
    105105</div>
    106106<?php