#17621 closed defect (bug) (duplicate)
The new WP 3.1.3 is giving an error within /wp-includes/query.php on line 2390
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.1.3 |
Component: | Administration | Keywords: | has-patch |
Focuses: | Cc: |
Description
The following fragment from the file /wp-includes/query.php is throwing a php notice when accessing /wp-admin/upload.php:
2390: $q_status = explode(',', $q['post_status']);
The solution I found is to replace the above with:
2390: if(!is_array($q['post_status'])) { 2391: $q_status = explode(',', $q['post_status']); 2392: } else { 2393: $q_status = $q['post_status']; 2394: }
I hope I helped.
Regards,
Bruno
Change History (2)
Note: See
TracTickets for help on using
tickets.
#17556 #17559 #17600
You can temporarily fix it with the Hotfix plugin