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-link-form.php

    r11204 r11224  
    115115function link_categories_meta_box($link) { ?>
    116116<ul id="category-tabs">
    117     <li class="ui-tabs-selected"><a href="#categories-all"><?php _e( 'All Categories' ); ?></a></li>
     117    <li class="tabs"><a href="#categories-all"><?php _e( 'All Categories' ); ?></a></li>
    118118    <li class="hide-if-no-js"><a href="#categories-pop"><?php _e( 'Most Used' ); ?></a></li>
    119119</ul>
    120120
    121 <div id="categories-all" class="ui-tabs-panel">
     121<div id="categories-all" class="tabs-panel">
    122122    <ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
    123123        <?php
     
    130130</div>
    131131
    132 <div id="categories-pop" class="ui-tabs-panel" style="display: none;">
     132<div id="categories-pop" class="tabs-panel" style="display: none;">
    133133    <ul id="categorychecklist-pop" class="categorychecklist form-no-clear">
    134134        <?php wp_popular_terms_checklist('link_category'); ?>
Note: See TracChangeset for help on using the changeset viewer.