SW/assets/php/common/reRol.php
2021-05-18 09:20:24 +02:00

11 lines
215 B
PHP

<?php
include('../config.php');
function reRol(){
if(isset($_SESSION["lastRol"])){
$_SESSION["rol"] = $_SESSION["lastRol"];
unset($_SESSION["lastRol"]);
}
}
reRol();
header("Location: /");
?>