Opened 13 years ago
Closed 13 years ago
#18526 closed defect (bug) (worksforme)
nav_menu.php in wp-admin\includes Error
Reported by: | wpsmith | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | General | Keywords: | reporter-feedback |
Focuses: | Cc: |
Description
Notice: Trying to get property of non-object
This occurs at line 59, $original_title = $original_object->post_title;
Simply changing this to $original_title = isset( $original_object->post_title ) ? $original_object->post_title : ; resolves it.
Change History (3)
Note: See
TracTickets for help on using
tickets.
Replying to wpsmith:
The same error appears on nav_menu.php in wp-includes line 568. Same solution will resolve it.