turtle-wow-source-kinda/Dumps/Source Code/18 - Development_Turtlehead Current/main/forum.php

32 lines
712 B
PHP
Raw Normal View History

2024-08-06 16:06:40 +00:00
<?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;