mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-26 16:30:52 +01:00
9 lines
137 B
PHP
9 lines
137 B
PHP
<?php
|
|
|
|
include "inc/functions.php";
|
|
|
|
$boards = listBoards(TRUE);
|
|
$board = array_rand($boards);
|
|
header('Location: /'.$boards[$board]);
|
|
?>
|