diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index e2a055c6c5..6b7216d845 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2008-07-02 Esteban Sanchez + + * include/styles/pandora.css: Removed width on header div. + + * include/functions_db.php: Use id_user parameter in logon_db(). + 2008-07-02 Esteban Sanchez * general/logon_ok.php: Style correction. diff --git a/pandora_console/include/functions_db.php b/pandora_console/include/functions_db.php index d39da6f412..943aaffe3d 100644 --- a/pandora_console/include/functions_db.php +++ b/pandora_console/include/functions_db.php @@ -172,7 +172,7 @@ function audit_db ($id, $ip, $accion, $descripcion){ function logon_db ($id_user, $ip) { global $config; - audit_db ($config['id_user'], $ip, "Logon", "Logged in"); + audit_db ($id_user, $ip, "Logon", "Logged in"); // Update last registry of user to get last logon $sql = sprintf ('UPDATE tusuario fecha_registro = $today WHERE id_usuario = "%s"', $id_user); $result = mysql_query ($sql); diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 4f48f7f55a..45e497e5df 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -211,7 +211,6 @@ div#page>div#menu { } div#head { font-size: 8pt; - width: 960px; height: 60px; background: url(../../images/header.jpg); border-bottom: solid 2px #555;