| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | This file is part of wTorrent. |
|---|
| 4 | |
|---|
| 5 | wTorrent is free software; you can redistribute it and/or modify |
|---|
| 6 | it under the terms of the GNU General Public License as published by |
|---|
| 7 | the Free Software Foundation; either version 3 of the License, or |
|---|
| 8 | (at your option) any later version. |
|---|
| 9 | |
|---|
| 10 | wTorrent is distributed in the hope that it will be useful, |
|---|
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 13 | GNU General Public License for more details. |
|---|
| 14 | |
|---|
| 15 | You should have received a copy of the GNU General Public License |
|---|
| 16 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
|---|
| 17 | |
|---|
| 18 | Class done by David Marco Martinez |
|---|
| 19 | */ |
|---|
| 20 | |
|---|
| 21 | require_once( 'lib/smarty/Smarty.class.php' ); |
|---|
| 22 | require_once( 'lib/cls/Web.cls.php'); |
|---|
| 23 | require_once( 'cls/rtorrent.cls.php' ); |
|---|
| 24 | require_once( 'cls/torrent.cls.php' ); |
|---|
| 25 | require_once( 'cls/multicall.cls.php' ); |
|---|
| 26 | //require_once( 'cls/install.cls.php' ); |
|---|
| 27 | require_once( 'lib/xmlrpc/xmlrpc.inc.php' ); |
|---|
| 28 | require_once( 'lib/inc/utils.inc.php' ); |
|---|
| 29 | require_once( 'lib/inc/string.inc.php' ); |
|---|
| 30 | require_once( 'lib/bdecode/class.bdecode.php' ); |
|---|
| 31 | require_once( 'lib/bdecode/bencode.php' ); |
|---|
| 32 | require_once( 'lib/simplepie/simplepie.inc.php' ); |
|---|
| 33 | require_once( 'lib/json/json.inc.php' ); |
|---|
| 34 | |
|---|
| 35 | error_reporting( E_ALL ^ E_NOTICE); |
|---|
| 36 | |
|---|
| 37 | ?> |
|---|