From: Harvie Date: Wed, 27 Oct 2010 10:29:04 +0000 (+0200) Subject: Fixed typo in logout event X-Git-Url: https://git.harvie.cz/?a=commitdiff_plain;ds=inline;h=a49cab65d2564c103fac69c6c7f78395658d2a37;p=mirrors%2FKyberia-bloodline.git Fixed typo in logout event --- diff --git a/wwwroot/inc/eventz/logout.inc b/wwwroot/inc/eventz/logout.inc index f2434e3..c9708aa 100644 --- a/wwwroot/inc/eventz/logout.inc +++ b/wwwroot/inc/eventz/logout.inc @@ -4,7 +4,7 @@ global $db; $q="update users set user_action_id=null where user_id='".$_SESSION['user_id']."'"; $db->query($q); - $logger::log('logout',$node['node_id'],'ok',$_SESSION['user_name']); + logger::log('logout',$node['node_id'],'ok',$_SESSION['user_name']); session_unset(); Header("Location: /main"); }