2011-03-07 Miguel de Dios <miguel.dedios@artica.es>
* general/logon_ok.php: change the SQL in postgreSQL and some parts of source code to use the colummns with the case sensitive. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4061 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
8e3a474bf4
commit
57d7372c4c
|
@ -1,3 +1,8 @@
|
||||||
|
2011-03-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
|
* general/logon_ok.php: change the SQL in postgreSQL and some parts of
|
||||||
|
source code to use the colummns with the case sensitive.
|
||||||
|
|
||||||
2011-03-07 Miguel de Dios <miguel.dedios@artica.es>
|
2011-03-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* include/functions_events.php, include/functions_reporting.php,
|
* include/functions_events.php, include/functions_reporting.php,
|
||||||
|
|
|
@ -160,10 +160,10 @@ switch ($config["dbtype"]) {
|
||||||
AND `id_usuario` = '%s' ORDER BY `utimestamp` DESC LIMIT 10", $config["id_user"]);
|
AND `id_usuario` = '%s' ORDER BY `utimestamp` DESC LIMIT 10", $config["id_user"]);
|
||||||
break;
|
break;
|
||||||
case "postgresql":
|
case "postgresql":
|
||||||
$sql = sprintf ("SELECT id_usuario,accion,fecha,ip_origen,descripcion
|
$sql = sprintf ("SELECT \"ID_usuario\", accion, fecha, \"IP_origen\", descripcion
|
||||||
FROM tsesion
|
FROM tsesion
|
||||||
WHERE (\"utimestamp\" > ceil(date_part('epoch', CURRENT_TIMESTAMP)) - 604800)
|
WHERE (\"utimestamp\" > ceil(date_part('epoch', CURRENT_TIMESTAMP)) - 604800)
|
||||||
AND \"id_usuario\" = '%s' ORDER BY \"utimestamp\" DESC LIMIT 10", $config["id_user"]);
|
AND \"ID_usuario\" = '%s' ORDER BY \"utimestamp\" DESC LIMIT 10", $config["id_user"]);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -175,10 +175,22 @@ if ($sessions === false)
|
||||||
foreach ($sessions as $session) {
|
foreach ($sessions as $session) {
|
||||||
$data = array ();
|
$data = array ();
|
||||||
|
|
||||||
$data[0] = '<strong>'.$session['id_usuario'].'</strong>';
|
switch ($config["dbtype"]) {
|
||||||
|
case "mysql":
|
||||||
|
$session_id_usuario = $session['id_usuario'];
|
||||||
|
$session_ip_origen = $session['ip_origen'];
|
||||||
|
break;
|
||||||
|
case "postgresql":
|
||||||
|
$session_id_usuario = $session['ID_usuario'];
|
||||||
|
$session_ip_origen = $session['IP_origen'];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$data[0] = '<strong>' . $session_id_usuario . '</strong>';
|
||||||
$data[1] = $session['accion'];
|
$data[1] = $session['accion'];
|
||||||
$data[2] = $session['fecha'];
|
$data[2] = $session['fecha'];
|
||||||
$data[3] = $session['ip_origen'];
|
$data[3] = $session_ip_origen;
|
||||||
$data[4] = safe_output ($session['descripcion']);
|
$data[4] = safe_output ($session['descripcion']);
|
||||||
|
|
||||||
array_push ($table->data, $data);
|
array_push ($table->data, $data);
|
||||||
|
|
Loading…
Reference in New Issue