Active
Project:
Spam
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Dec 2010 at 02:56 UTC
Updated:
30 Dec 2010 at 04:51 UTC
In connection with the comment and what the code looks like, it seems that we should have if (!isset(...)) [with a ! before isset()]....
// See if module type is set, if not we can't yet perform certain filters.
if (isset($filters['module'])) {
unset($filters['title']);
unset($filters['status']);
unset($filters['feedback']);
}
Comments
Comment #1
AlexisWilke commentedActually, it doesn't even seem to make sense because the loop below accesses title, status and feedback using an additional level of indirection.
It feels like that was a kludge to a some bug and not something that makes sense.
Thank you.
Alexis