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