In my project pages in the Tasks tab applying any filtering returns an empty list even though there are tasks with those attributes. The only combination that returns anything is all-all-all. What might cause this?
I found some similar issues but most seem to end with "fixed with new version."
Filters appear to work properly on all other pages (organizations, tickets, etc.) including the general tasks list at /storm/tasks.
Thank you.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | stormtask-526926-1.module.patch | 521 bytes | Mark_Watson27 |
Comments
Comment #1
Mark_Watson27 commentedI've traced this down to Line 718 in stormtask/stormtask.module
The following line isn't merging the arrays correctly:
$args = array($project_nid) + $args;Changing this line to:
$args = array_merge($args, array($project_nid));Does the job.
Patch attached (this patch is against latest dev version 6.x-1.x-dev 2009-Jul-24)
Comment #2
Magnity commentedThanks - that works - it'll be committed once i get to a different web connection.