]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/admin.log.php
Se hace que por default se muestre el log del día actual.
[z.facultad/75.43/tp1.git] / src / admin.log.php
index 7863e975cf0115e6cf00e532c63d08dc5e646121..df0854f839483d95a48d02a2002b0cab765dc87b 100644 (file)
@@ -20,7 +20,7 @@ p($_SESSION['user']->toHtml());
 
 $desde = 0;
 $mes = date('m');
 
 $desde = 0;
 $mes = date('m');
-$dia = 1;
+$dia = date('d');
 $anio = date('Y');
 // Cargo datos que vienen por GET (si corresponde)
 if (isset($_GET['admin_anio']) and isset($_GET['admin_mes'])
 $anio = date('Y');
 // Cargo datos que vienen por GET (si corresponde)
 if (isset($_GET['admin_anio']) and isset($_GET['admin_mes'])
@@ -31,7 +31,8 @@ if (isset($_GET['admin_anio']) and isset($_GET['admin_mes'])
     $anio = intval($_GET['admin_anio']);
 }
 
     $anio = intval($_GET['admin_anio']);
 }
 
-if (check_fecha($anio, $mes, $dia)) $desde = mktime(0, 0, 0, $mes, $dia, $anio);
+if (!isset($_GET['admin_todo']) and check_fecha($anio, $mes, $dia))
+    $desde = mktime(0, 0, 0, $mes, $dia, $anio);
 
 $log = new LogMsg($_SESSION['user'], $desde);
 listar($log, 'admin.log.php');
 
 $log = new LogMsg($_SESSION['user'], $desde);
 listar($log, 'admin.log.php');