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.

CommentFileSizeAuthor
#1 stormtask-526926-1.module.patch521 bytesMark_Watson27

Comments

Mark_Watson27’s picture

Status: Active » Needs review
StatusFileSize
new521 bytes

I'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)

Magnity’s picture

Category: support » bug
Status: Needs review » Fixed

Thanks - that works - it'll be committed once i get to a different web connection.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.