Opened 14 years ago
Closed 14 years ago
#15573 closed defect (bug) (fixed)
Post Count Links are Bogus When query_var = false
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.1 | Priority: | normal |
Severity: | normal | Version: | 3.0.1 |
Component: | Taxonomy | Keywords: | |
Focuses: | Cc: |
Description
If I call register_taxonomy() with $args = ('query_var' => FALSE) then the links listed in the post count column of the taxonomy editor don't work as expected. The links should not be displayed if they are defective like this.
Attachments (2)
Change History (9)
#1
@
14 years ago
- Milestone changed from Awaiting Review to 3.1
- Owner set to scribu
- Status changed from new to accepted
#3
follow-up:
↓ 4
@
14 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
Just because it doesn't have a query var, doesn't make it not queryable. We have taxonomy and term query vars for that. You have to make a separate publicly queryable check.
#4
in reply to:
↑ 3
@
14 years ago
Replying to nacin:
Just because it doesn't have a query var, doesn't make it not queryable. We have taxonomy and term query vars for that.
15573.diff does that.
You have to make a separate publicly queryable check.
The 'public' option reads: @TODO not implemented.
Hm...
#5
@
14 years ago
The only way the columns would not be linked is with public=false and show_ui=true, which doesn't make much sense, but hey...
(In [16578]) Don't link post counts if taxonomy isn't queryable. Fixes #15573