Fixed error introduced in _stormtask_plain_tree() to order tasks trees

This commit is contained in:
Manuel Cillero 2017-09-19 17:06:31 +02:00
parent ed2dd31a97
commit 0ff3402b99
2 changed files with 4 additions and 4 deletions

View file

@ -499,7 +499,7 @@ function stormtask_tasks_filter_reset($form, &$form_state) {
function _stormtask_project_tasks_js($project_nid) {
$tree = _stormtask_get_tree($project_nid);
$tasks = _stormtask_plain_tree($tree);
$tasks = _stormtask_plain_tree($tree, TRUE);
print drupal_to_js($tasks);
exit();
}