turtle-wow-source-kinda/Dumps/Source Code/18 - Development_Turtlehead Current/main/forum.php
Brian Oost a1d5bb70b2 Init
2024-08-06 18:06:40 +02:00

32 lines
712 B
PHP

<?php
$board = $_REQUEST['board'];
$lang = $_SESSION['locale'];
if ($board < 0) {
switch ($lang) :
// english
case 0:
switch ($board) :
// tools
case -1:
header('Location: http://yourboardurl');
break;
endswitch;
endswitch;
}
else
switch ($lang) :
//english
case 0:
//wow general
switch ($board):
case 0:
header('Location: http://yourboardurl');
break;
endswitch;
default:
header('Location: Location: http://yourboardurl');
break;
endswitch;