Add files via upload

This commit is contained in:
Fernando Méndez
2021-06-04 23:47:23 +02:00
committed by GitHub
parent 63d9c9a61d
commit c0cbc85ff9
2 changed files with 6 additions and 13 deletions

View File

@ -1,9 +1,6 @@
<?php
include('../../../assets/php/config.php');
switch(true){
case strpos($_GET["css"], "main.css"): $_SESSION["css"] = "main.css"; break;
case strpos($_GET["css"], "highContrast.css"): $_SESSION["css"] = "highContrast.css"; break;
//default: $_SESSION["css"] = "main.css"; break;
}
if($_GET["css"] === "main.css") $_SESSION["css"] = "main.css";
else if($_GET["css"] === "highContrast.css") $_SESSION["css"] = "highContrast.css";
?>