#25874 closed defect (bug) (fixed)
Missing parenthesis in get_bookmarks is breaking Links
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.8 | Priority: | normal |
Severity: | blocker | Version: | 3.8 |
Component: | General | Keywords: | has-patch commit |
Focuses: | Cc: |
Description
r25934 introduce a bug in get_bookmarks
because it's missing paranthesis around the cache check:
if ( is_array($cache) && isset( $cache[ $key ] ) )
We end up doing an early return because the apply_filters call isn't contained within the parenthesis.
This is causing the Links section to break.
Attachments (1)
Change History (5)
Note: See
TracTickets for help on using
tickets.
Patch adds missing parentheses.