mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-02-07 15:11:32 +01:00
10 lines
141 B
PHP
10 lines
141 B
PHP
<?php
|
|
|
|
include "inc/functions.php";
|
|
|
|
$boards = listBoards();
|
|
$board = array_rand($boards);
|
|
|
|
header('Location: /'.$boards[$board]["uri"]);
|
|
|
|
?>
|