Make WordPress Core

Changeset 13057


Ignore:
Timestamp:
02/11/2010 08:10:15 PM (16 years ago)
Author:
wpmuguru
Message:

fix dashboard right now category links, fixes #12205

File:
1 edited

Legend:

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

    r12874 r13057  
    275275    $text = _n( 'Category', 'Categories', $num_cats );
    276276    if ( current_user_can( 'manage_categories' ) ) {
    277         $num = "<a href='categories.php'>$num</a>";
    278         $text = "<a href='categories.php'>$text</a>";
     277        $num = "<a href='edit-tags.php?taxonomy=category'>$num</a>";
     278        $text = "<a href='edit-tags.php?taxonomy=category'>$text</a>";
    279279    }
    280280    echo '<td class="first b b-cats">' . $num . '</td>';
Note: See TracChangeset for help on using the changeset viewer.