2011-04-04 15:16:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
include("seguridad.php");
|
|
|
|
|
include("functions.php");
|
|
|
|
|
include_once("html/cabecera.php");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* APLICACION.PHP */
|
|
|
|
|
|
|
|
|
|
echo "<h2>".$locale['002']."</h2>";
|
|
|
|
|
|
2012-04-30 16:41:25 +00:00
|
|
|
if(!$usuario->tieneRol("7")) {
|
|
|
|
|
include("tablero.php");
|
|
|
|
|
}
|
|
|
|
|
else {
|
2012-05-03 09:41:07 +00:00
|
|
|
header("Location: lista_ofertas.php");
|
2012-04-30 16:41:25 +00:00
|
|
|
}
|
2011-05-11 16:44:19 +00:00
|
|
|
|
2011-04-04 15:16:10 +00:00
|
|
|
if($_SESSION["oid"]){
|
|
|
|
|
include_once("alarmas.php");
|
|
|
|
|
}
|
|
|
|
|
$usuario->compruebaChangePass();
|
|
|
|
|
include_once("html/pie.php");
|
|
|
|
|
|
|
|
|
|
?>
|