Make WordPress Core


Ignore:
Timestamp:
05/06/2009 09:31:07 PM (16 years ago)
Author:
azaozz
Message:

Change CSS classes to avoid collisions with ui.tabs, fixes #9740

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-form-advanced.php

    r11204 r11224  
    314314?>
    315315<ul id="category-tabs">
    316     <li class="ui-tabs-selected"><a href="#categories-all" tabindex="3"><?php _e( 'All Categories' ); ?></a></li>
     316    <li class="tabs"><a href="#categories-all" tabindex="3"><?php _e( 'All Categories' ); ?></a></li>
    317317    <li class="hide-if-no-js"><a href="#categories-pop" tabindex="3"><?php _e( 'Most Used' ); ?></a></li>
    318318</ul>
    319319
    320 <div id="categories-pop" class="ui-tabs-panel" style="display: none;">
     320<div id="categories-pop" class="tabs-panel" style="display: none;">
    321321    <ul id="categorychecklist-pop" class="categorychecklist form-no-clear" >
    322322<?php $popular_ids = wp_popular_terms_checklist('category'); ?>
     
    324324</div>
    325325
    326 <div id="categories-all" class="ui-tabs-panel">
     326<div id="categories-all" class="tabs-panel">
    327327    <ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
    328328<?php wp_category_checklist($post->ID, false, false, $popular_ids) ?>
Note: See TracChangeset for help on using the changeset viewer.