3.3.2-rc1
[phpmyadmin/madhuracj.git] / libraries / logging.lib.php
bloba531ba3cc484a0ecb98b4c48e713f54b5a86b546
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Logging functionality for webserver.
6 * This includes web server specific code to log some information.
8 * @version $Id$
9 * @package phpMyAdmin
12 function PMA_log_user($user, $status = 'ok'){
13 if (function_exists('apache_note')) {
14 apache_note('userID', $user);
15 apache_note('userStatus', $status);