[wp-trac] [WordPress Trac] #42430: Incorrect variable used in class-wp-ajax-upgrader-skin.php
WordPress Trac
noreply at wordpress.org
Fri Nov 3 10:27:54 UTC 2017
#42430: Incorrect variable used in class-wp-ajax-upgrader-skin.php
--------------------------+-----------------------------
Reporter: yrpwayne | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: General | Version: 4.8.3
Severity: normal | Keywords:
Focuses: |
--------------------------+-----------------------------
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() );
}}}
--
Ticket URL: <https://core.trac.wordpress.org/ticket/42430>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list