2008-07-02 Esteban Sanchez <estebans@artica.es>
* include/styles/pandora.css: Removed width on header div. * include/functions_db.php: Use id_user parameter in logon_db(). git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@917 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
fc7320e377
commit
f6efb72c7f
|
@ -1,3 +1,9 @@
|
|||
2008-07-02 Esteban Sanchez <estebans@artica.es>
|
||||
|
||||
* 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 <estebans@artica.es>
|
||||
|
||||
* general/logon_ok.php: Style correction.
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue