#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: | brunobbmagalhaes | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Administration | Version: | 3.1.3 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
#17556 #17559 #17600
You can temporarily fix it with the Hotfix plugin