diff options
Diffstat (limited to 'app/Model/Budget.php')
-rw-r--r-- | app/Model/Budget.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/Budget.php b/app/Model/Budget.php index d74dd870..76c42ca9 100644 --- a/app/Model/Budget.php +++ b/app/Model/Budget.php @@ -75,7 +75,7 @@ class Budget extends Base ->join(Task::TABLE, 'id', 'task_id', Subtask::TABLE) ->join(User::TABLE, 'id', 'user_id') ->eq(Task::TABLE.'.project_id', $project_id) - ->filter(array($this, 'applyUserRate')); + ->callback(array($this, 'applyUserRate')); } /** |