Make WordPress Core


Ignore:
Timestamp:
08/22/2010 11:22:46 AM (14 years ago)
Author:
scribu
Message:

replace $table with $wp_list_table. See #14651

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/link-manager.php

    r15496 r15519  
    1212require_once( './includes/default-list-tables.php' );
    1313
    14 $table = new WP_Links_Table;
    15 $table->check_permissions();
     14$wp_list_table = new WP_Links_Table;
     15$wp_list_table->check_permissions();
    1616
    1717// Handle bulk deletes
     
    3636}
    3737
    38 $table->prepare_items();
     38$wp_list_table->prepare_items();
    3939
    4040$title = __('Links');
     
    8585
    8686<form id="posts-filter" action="" method="post">
    87 <?php $table->display(); ?>
     87<?php $wp_list_table->display(); ?>
    8888<div id="ajax-response"></div>
    8989</form>
Note: See TracChangeset for help on using the changeset viewer.