Add modules to repository

This commit is contained in:
Sebastian Kinne
2017-11-16 16:42:22 +11:00
commit d0aa1e38ef
707 changed files with 96750 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 30 Sep 1998 03:13:37");
$loop = 0;
foreach(glob("/www/Rolls/*/index.php") as $roll){
$rolls[$loop] = $roll;
$loop++;
}
$element = rand(0, count($rolls)-1);
require($rolls[$element]);