$mdb2 = getConnection();
$tasks = implode(',', $task_ids); // This is a comma-separated list of task ids.
+ $group_id = $this->getGroup();
+ $org_id = $this->org_id;
+
$sql = "select id, name, description from tt_tasks".
- " where group_id = $this->group_id and status = 1 and id in ($tasks) order by name";
+ " where group_id = $group_id and org_id = $org_id and status = 1 and id in ($tasks) order by name";
$res = $mdb2->query($sql);
if (!is_a($res, 'PEAR_Error')) {
while ($val = $res->fetchRow()) {
<br>
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
- <td align="center"> Anuko Time Tracker 1.18.30.4648 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+ <td align="center"> Anuko Time Tracker 1.18.30.4649 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
<a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
<a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
<a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>
<tr>
<td valign="top">
{if $user->can('manage_tasks')}
- {if $group_dropdown}
-{$forms.tasksForm.open} {* tasksForm consists only of one dropdown group control *}
- <table width="100%">
- <tr>
- <td align="center">{$i18n.label.group}: {$forms.tasksForm.group.control}</td>
- </tr>
- </table>
-{$forms.tasksForm.close}
- {/if}
-
<table cellspacing="1" cellpadding="3" border="0" width="100%">
{if $inactive_tasks}
<tr><td class="sectionHeaderNoBorder">{$i18n.form.tasks.active_tasks}</td></tr>
header('Location: feature_disabled.php');
exit();
}
-if ($request->isPost() && !$user->isGroupValid($request->getParameter('group'))) {
- header('Location: access_denied.php'); // Wrong group id in post.
- exit();
-}
// End of access checks.
-if ($request->isPost()) {
- $group_id = $request->getParameter('group');
- $user->setOnBehalfGroup($group_id);
- // Tasks feature may not be available in new group, check and redirect.
- if (MODE_PROJECTS_AND_TASKS != $user->getTrackingMode()) {
- header('Location: feature_disabled.php');
- exit();
- }
-} else {
- $group_id = $user->getGroup();
-}
-
-$form = new Form('tasksForm');
-if ($user->can('manage_subgroups')) {
- $groups = $user->getGroupsForDropdown();
- if (count($groups) > 1) {
- $form->addInput(array('type'=>'combobox',
- 'onchange'=>'this.form.submit();',
- 'name'=>'group',
- 'style'=>'width: 250px;',
- 'value'=>$group_id,
- 'data'=>$groups,
- 'datakeys'=>array('id','name')));
- $smarty->assign('group_dropdown', 1);
- }
-}
-
if($user->can('manage_tasks')) {
$active_tasks = ttGroupHelper::getActiveTasks();
$inactive_tasks = ttGroupHelper::getInactiveTasks();
} else
$active_tasks = $user->getAssignedTasks();
-$smarty->assign('forms', array($form->getName()=>$form->toArray()));
$smarty->assign('active_tasks', $active_tasks);
$smarty->assign('inactive_tasks', $inactive_tasks);
$smarty->assign('title', $i18n->get('title.tasks'));