Hi!

When I call get_full_list() on a ProjectTask bean not all ProjectTasks are returned.
After checking the database I found out that the two missing tasks have empty
project_id fields (null). After changing project_id to some valid project id the missing
rows now are included in the result set.

The code is as following:

$pt = new ProjectTask();
$projectTasksTmp = $pt->get_full_list();


What is going on here? Shouldn't all rows (except from deleted = 1) be returned?
Can I expect to experience this somewhere else in the system?

If I can't rely on the bean methods for working with object what can I do?

Version 5.1.0a (Build 4837)