diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-07-04 12:42:13 -0300 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-07-04 12:42:13 -0300 |
commit | e99fd2a0e3bedcfb8aad24af9ee4df30b707e50a (patch) | |
tree | 89be8e22f585b7cf91e2c40ad4eb17ce51396c3d | |
parent | 8c428d377f1570faf1198ae692a6f56bdb66170c (diff) | |
parent | 95d3fa0e301da0e363639e43523104626b0638aa (diff) |
Merge pull request #164 from Typz/actions
Allow 'no category' and 'unassigned' in actions.
-rw-r--r-- | app/Controller/Action.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Controller/Action.php b/app/Controller/Action.php index 11dc3b29..797bbfa2 100644 --- a/app/Controller/Action.php +++ b/app/Controller/Action.php @@ -33,10 +33,10 @@ class Action extends Base 'available_events' => $this->action->getAvailableEvents(), 'available_params' => $this->action->getAllActionParameters(), 'columns_list' => $this->board->getColumnsList($project['id']), - 'users_list' => $this->project->getUsersList($project['id'], false), + 'users_list' => $this->project->getUsersList($project['id']), 'projects_list' => $this->project->getList(false), 'colors_list' => $this->task->getColors(), - 'categories_list' => $this->category->getList($project['id'], false), + 'categories_list' => $this->category->getList($project['id']), 'menu' => 'projects', 'title' => t('Automatic actions') ))); @@ -64,10 +64,10 @@ class Action extends Base 'values' => $values, 'action_params' => $action->getActionRequiredParameters(), 'columns_list' => $this->board->getColumnsList($project['id']), - 'users_list' => $this->project->getUsersList($project['id'], false), + 'users_list' => $this->project->getUsersList($project['id']), 'projects_list' => $this->project->getList(false), 'colors_list' => $this->task->getColors(), - 'categories_list' => $this->category->getList($project['id'], false), + 'categories_list' => $this->category->getList($project['id']), 'project' => $project, 'menu' => 'projects', 'title' => t('Automatic actions') |