summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/audit.inc.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-05-12 15:12:34 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-05-12 15:12:34 +0000
commit1c61097f8490a7f34f61012c0fc54e38e091a4a4 (patch)
treeff4caba28a17d3052447a284cba00f45e97ef558 /frontends/php/include/audit.inc.php
parent4182bc6afb20b00fa27a54c67056bb98a58a49bb (diff)
downloadzabbix-1c61097f8490a7f34f61012c0fc54e38e091a4a4.tar.gz
zabbix-1c61097f8490a7f34f61012c0fc54e38e091a4a4.tar.xz
zabbix-1c61097f8490a7f34f61012c0fc54e38e091a4a4.zip
- removed unused table stats (Alexei)
- removed all references to escalations (Alexei) - table audit renamed to auditlog (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@2826 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/audit.inc.php')
-rw-r--r--frontends/php/include/audit.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/include/audit.inc.php b/frontends/php/include/audit.inc.php
index 91a3ea90..c01f9c3d 100644
--- a/frontends/php/include/audit.inc.php
+++ b/frontends/php/include/audit.inc.php
@@ -25,7 +25,7 @@
$userid=$USER_DETAILS["userid"];
$clock=time();
- $sql="insert into audit (userid,clock,action,resource,details) values ($userid,$clock,$action,$resource,".zbx_dbstr($details).")";
+ $sql="insert into auditlog (userid,clock,action,resource,details) values ($userid,$clock,$action,$resource,".zbx_dbstr($details).")";
return DBexecute($sql);
}
?>