Make WordPress Core


Ignore:
Timestamp:
04/28/2011 03:24:49 PM (15 years ago)
Author:
nacin
Message:

Switch from Panel/SubPanel to Screen in inline documentation and Codex links. props michaelh, fixes #17265.

File:
1 edited

Legend:

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

    r17435 r17748  
    11<?php
    22/**
    3  * Edit Tags Administration Panel.
     3 * Edit Tags Administration Screen.
    44 *
    55 * @package WordPress
     
    210210
    211211    if ( 'category' == $taxonomy )
    212         $help .= '<p>' . __( '<a href="http://codex.wordpress.org/Posts_Categories_SubPanel" target="_blank">Documentation on Categories</a>' ) . '</p>';
     212        $help .= '<p>' . __( '<a href="http://codex.wordpress.org/Posts_Categories_Screen" target="_blank">Documentation on Categories</a>' ) . '</p>';
    213213    elseif ( 'link_category' == $taxonomy )
    214         $help .= '<p>' . __( '<a href="http://codex.wordpress.org/Links_Link_Categories_SubPanel" target="_blank">Documentation on Link Categories</a>' ) . '</p>';
    215     else
    216         $help .= '<p>' . __( '<a href="http://codex.wordpress.org/Posts_Post_Tags_SubPanel" target="_blank">Documentation on Post Tags</a>' ) . '</p>';
     214        $help .= '<p>' . __( '<a href="http://codex.wordpress.org/Links_Link_Categories_Screen" target="_blank">Documentation on Link Categories</a>' ) . '</p>';
     215    else
     216        $help .= '<p>' . __( '<a href="http://codex.wordpress.org/Posts_Post_Tags_Screen" target="_blank">Documentation on Post Tags</a>' ) . '</p>';
    217217
    218218    $help .= '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>';
Note: See TracChangeset for help on using the changeset viewer.