initial import. Probably needs some more cleanup

This commit is contained in:
root
2011-11-26 20:21:27 +04:00
commit 43721d2912
1278 changed files with 192784 additions and 0 deletions

16
Sources/index.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
// This file is here solely to protect your Sources directory.
// Look for Settings.php....
if (file_exists(dirname(dirname(__FILE__)) . '/Settings.php'))
{
// Found it!
require(dirname(dirname(__FILE__)) . '/Settings.php');
header('Location: ' . $boardurl);
}
// Can't find it... just forget it.
else
exit;
?>