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:
Sergey Biryukov 2023-08-15 10:09:24 +00:00
parent 356e6cac57
commit 832b4660fd
3 changed files with 3 additions and 3 deletions

View File

@ -297,7 +297,7 @@ class WP_Media_List_Table extends WP_List_Table {
<?php
$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() );
// Back compat for pre-4.0 view links.

View File

@ -329,7 +329,7 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
public function 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 );
$this->screen->render_screen_reader_content( 'heading_views' );

View File

@ -16,7 +16,7 @@
*
* @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.