SW/assets/php/common/reRol.php
2021-07-02 18:08:16 +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: /");
?>