Docs: Fix typo in duplicate hook references for `views_{$this->screen->id}`.
Follow-up to [29218], [29625]. Props nithins53, NekoJonez, mukesh27. Fixes #59102. See #58833. Built from https://develop.svn.wordpress.org/trunk@56397 git-svn-id: http://core.svn.wordpress.org/trunk@55909 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
356e6cac57
commit
832b4660fd
|
@ -297,7 +297,7 @@ class WP_Media_List_Table extends WP_List_Table {
|
||||||
<?php
|
<?php
|
||||||
$this->extra_tablenav( 'bar' );
|
$this->extra_tablenav( 'bar' );
|
||||||
|
|
||||||
/** This filter is documented in wp-admin/inclues/class-wp-list-table.php */
|
/** This filter is documented in wp-admin/includes/class-wp-list-table.php */
|
||||||
$views = apply_filters( "views_{$this->screen->id}", array() );
|
$views = apply_filters( "views_{$this->screen->id}", array() );
|
||||||
|
|
||||||
// Back compat for pre-4.0 view links.
|
// Back compat for pre-4.0 view links.
|
||||||
|
|
|
@ -329,7 +329,7 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
|
||||||
public function views() {
|
public function views() {
|
||||||
$views = $this->get_views();
|
$views = $this->get_views();
|
||||||
|
|
||||||
/** This filter is documented in wp-admin/inclues/class-wp-list-table.php */
|
/** This filter is documented in wp-admin/includes/class-wp-list-table.php */
|
||||||
$views = apply_filters( "views_{$this->screen->id}", $views );
|
$views = apply_filters( "views_{$this->screen->id}", $views );
|
||||||
|
|
||||||
$this->screen->render_screen_reader_content( 'heading_views' );
|
$this->screen->render_screen_reader_content( 'heading_views' );
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.4-alpha-56396';
|
$wp_version = '6.4-alpha-56397';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue