$group_id = $user->getGroup();
$org_id = $user->org_id;
- $sql = "update tt_templates set status = null".
+ $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$user->id;
+
+ $sql = "update tt_templates set status = null".$modified_part.
" where id = $id and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
$description = $fields['description'];
$content = $fields['content'];
- $sql = "insert into tt_templates (group_id, org_id, name, description, content)".
+ $created_part = ', now(), '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', '.$user->id;
+
+ $sql = "insert into tt_templates (group_id, org_id, name, description, content,".
+ " created, created_ip, created_by)".
" values ($group_id, $org_id, ".$mdb2->quote($name).
- ", ".$mdb2->quote($description).", ".$mdb2->quote($content).")";
+ ", ".$mdb2->quote($description).", ".$mdb2->quote($content).$created_part.")";
$affected = $mdb2->exec($sql);
if (is_a($affected, 'PEAR_Error'))
return false;
$name = $fields['name'];
$description = $fields['description'];
$content = $fields['content'];
+ $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$user->id;
$status = (int) $fields['status'];
$sql = "update tt_templates set name = ".$mdb2->quote($name).
", description = ".$mdb2->quote($description).
- ", content = ".$mdb2->quote($content).
+ ", content = ".$mdb2->quote($content).$modified_part.
", status = ".$status.
" where id = $template_id and group_id = $group_id and org_id = $org_id";
$affected = $mdb2->exec($sql);
<br>
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
- <td align="center"> Anuko Time Tracker 1.18.56.4852 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+ <td align="center"> Anuko Time Tracker 1.18.56.4853 | 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>