Use $this-> instead of parent:: when calling tablenav() in WP_Theme_Install_List_Table.

See #30799.

Built from https://develop.svn.wordpress.org/trunk@31672


git-svn-id: http://core.svn.wordpress.org/trunk@31653 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-03-07 23:03:27 +00:00
parent a91d1c2ab2
commit c1cab11ceb
2 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
</div>
<?php
parent::tablenav( 'bottom' );
$this->tablenav( 'bottom' );
}
public function display_rows() {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.2-alpha-31671';
$wp_version = '4.2-alpha-31672';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.