mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 08:11:52 +01:00
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:
parent
a91d1c2ab2
commit
c1cab11ceb
@ -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() {
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user