Coding Standards: Remove unused variable in `WP_Plugins_List_Table::single_row()`.

Follow-up to [47835], [48669].

Props azouamauriac.
Fixes #55132.
Built from https://develop.svn.wordpress.org/trunk@55571


git-svn-id: http://core.svn.wordpress.org/trunk@55083 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-03-21 13:27:21 +00:00
parent 7dde8c4440
commit 94a1aed064
2 changed files with 2 additions and 3 deletions

View File

@ -1021,8 +1021,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
$auto_updates = (array) get_site_option( 'auto_update_plugins', array() );
$available_updates = get_site_transient( 'update_plugins' );
$auto_updates = (array) get_site_option( 'auto_update_plugins', array() );
foreach ( $columns as $column_name => $column_display_name ) {
$extra_classes = '';

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.3-alpha-55569';
$wp_version = '6.3-alpha-55571';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.