New Comment / #1960

You wrote that you solved the problem with the assignment of efforts to tasks or folders, but I didn't see any changes.

So I looked at the code (effortEdit()) and saw that the variable 'folders_only' was set to 'true'.
Therefore I would like to know if this ('folders_only'=>true) was on purpose or not?

If not I will change it.

$folders= Task::getAll(array(
            'sort_hierarchical'=>true,
            'parent_task'=> 0,
            'show_folders'=>true,
            'folders_only'=>true, --> have to be false
            'status_min'=> STATUS_UPCOMING,
            'status_max'=> STATUS_CLOSED,
            'project'=> $project->id,

        ));