Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-links-list-table.php

    r17349 r18247  
    1010class WP_Links_List_Table extends WP_List_Table {
    1111
    12     function WP_Links_List_Table() {
    13         parent::WP_List_Table( array(
     12    function __construct() {
     13        parent::__construct( array(
    1414            'plural' => 'bookmarks',
    1515        ) );
     
    7878        return array(
    7979            'cb'         => '<input type="checkbox" />',
    80             'name'       => __( 'Name' ),
     80            'name'       => _x( 'Name', 'link name' ),
    8181            'url'        => __( 'URL' ),
    8282            'categories' => __( 'Categories' ),
Note: See TracChangeset for help on using the changeset viewer.