X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/9e2560d8e755d4e3441724d189c89f4c67f3d691..3f6877e42e9c7d6940e2d7e73c29e7f457e2c536:/sistema/local_lib/prepend.php?ds=sidebyside diff --git a/sistema/local_lib/prepend.php b/sistema/local_lib/prepend.php index 8152b0a..57331d5 100644 --- a/sistema/local_lib/prepend.php +++ b/sistema/local_lib/prepend.php @@ -13,8 +13,6 @@ require_once 'SAMURAI/constantes.php'; require_once 'MECON/Usuario.php'; -session_start(); - //Realizo la conexion con la base de datos $tmp = new SAMURAI_DB(); $DB =& $tmp->connect(); @@ -32,7 +30,7 @@ elseif (($_SERVER['REQUEST_URI'] != "/sistemas/samurai/sel-sistema" && !@$_SESSION['samurai']['id_sistema']) { header('Location: /sistemas/samurai/sel-sistema?redirect=index'); } -elseif (@$_SESSION['samurai']['id_sistema']) { +if (@$_SESSION['samurai']['id_sistema']) { //Creo el objeto Permiso $SAMURAI_PERM = new SAMURAI_Perm ($_SESSION['usuario'], $_SESSION['samurai']['id_sistema'], $DB);