mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-25 16:00:22 +01:00
15f49b7017
Conflicts: install.sql random.php
11 lines
139 B
PHP
11 lines
139 B
PHP
<?php
|
|
|
|
include "inc/functions.php";
|
|
|
|
$boards = listBoards(true);
|
|
$board = array_rand($boards);
|
|
|
|
header('Location: /'.$boards[$board]);
|
|
|
|
?>
|