<?
/*
--------------------------------------------------------------------------------
------------------------BIT TORRENT PHP NUKE------------------------------------
- -
- Created by Graziano Chiaiese - www.raulken.it -
- www.bitnile.com -
- www.natasha.it -
- www.hyarbor.it -
- -
- Modded and Fixed by Antonio Anzivino - www.p2pmania.it -
- www.ffitalia.net - -
- www.sourceforge.net/projects/flashnuke -
- -
- -
- This software is distributed under GNU/GPL license. -
- -
- The authors of this software cannot be held responsible for any -
- illegal use you can make. -
- -
- The authors want to remember you that spreading illegal -
- files trough Filesharing Networks is illegal. -
- -
- This software has been created in order to help the -
- diffusion of the Bit Torrent protocol and its clients. -
- -
- The authors DO NOT ALLOW YOU to use this software -
- for piracy and child pornography. -
- -
- "FILESHARE INSIDE" is our motto. -
- -
- Tested under PHP Nuke 7.5. Before installing, -
- please read the documentation in the README folder -
- -
- Need help? Try asking on www.bitnile.com (ENG) and -
- www.p2pmania.it (ITA) forums -
- -
- -
-----------------Copyright 2004 Hyarbor S.r.l. & P2PMania.it--------------------
--------------------------All rights reserved-----------------------------------
--------------------------------------------------------------------------------
*/
if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
global $name, $currentlang, $language;
include("header.php");
if (is_readable("modules/$name/help/index-$currentlang.php")) {
include_once("modules/$name/help/index-$currentlang.php");
} elseif (is_readable("modules/$name/help/index-$language.php")) {
include_once("modules/$name/help/index-$language.php");
} else {
include_once("modules/$name/help/index-italian.php");
}
include("footer.php");
?>