#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: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Administration | Version: | 3.1.3 |
| Severity: | normal | Keywords: | has-patch |
| 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)
comment:1
aaroncampbell
— 2 years ago
- Milestone Awaiting Review deleted
- Resolution set to duplicate
- Status changed from new to closed
comment:2
brunobbmagalhaes
— 2 years ago
Sorry, I forgot to search for previous bug reports. My bad.
Regards,
Bruni
Note: See
TracTickets for help on using
tickets.
#17556 #17559 #17600
You can temporarily fix it with the Hotfix plugin