#42430 closed defect (bug) (duplicate)
Incorrect variable used in class-wp-ajax-upgrader-skin.php
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 4.8.3 |
| Component: | General | Keywords: | |
| Focuses: | Cc: |
Description
In the file: /wp-admin/includes/class-wp-ajax-upgrader.php
on line: 102
$errors_count = count( $errors->get_error_codes() );
Should be using $this->errors->get_error_codes()
$errors_count = count( $this->errors->get_error_codes() );
Change History (2)
Note: See
TracTickets for help on using
tickets.
Hi @yrpwayne, you reported this error previously in #41449, where it has been fixed since :)