Skip to content
Snippets Groups Projects
Commit 25021b00 authored by Karin Schöne's avatar Karin Schöne
Browse files

redirect IT and CZE pages to EN pages

parent a66456d4
No related branches found
No related tags found
No related merge requests found
Pipeline #19972 passed
......@@ -8,7 +8,12 @@ require('A_forms.php');
require('F_headermenu.php');
$current_script = substr(basename($_SERVER['PHP_SELF']), 2);
require($_SESSION['lang']."/".$current_script);
if($_SESSION['lang'] == 'cz' || SESSION['lang'] == 'it'){
require("en/".$current_script);
}
else{
require($_SESSION['lang']."/".$current_script);
}
require('F_footer.php');
?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment