-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathuseragreement.php
More file actions
37 lines (31 loc) · 1.03 KB
/
useragreement.php
File metadata and controls
37 lines (31 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/*
+------------------------------------------------
| TBDev.net BitTorrent Tracker PHP
| =============================================
| by CoLdFuSiOn
| (c) 2003 - 2009 TBDev.Net
| http://www.tbdev.net
| =============================================
| svn: http://sourceforge.net/projects/tbdevnet/
| Licence Info: GPL
+------------------------------------------------
| $Date$
| $Revision$
| $Author$
| $URL$
+------------------------------------------------
*/
require "include/bittorrent.php";
require_once "include/html_functions.php";
require_once "include/user_functions.php";
dbconn();
$lang = array_merge( load_language('global'), load_language('useragreement') );
$HTMLOUT = '';
$HTMLOUT .= begin_main_frame();
$HTMLOUT .= begin_frame($TBDEV['site_name']." {$lang['frame_usragrmnt']}");
$HTMLOUT .= "<p></p> {$lang['text_usragrmnt']}";
$HTMLOUT .= end_frame();
$HTMLOUT .= end_main_frame();
print stdhead("{$lang['stdhead_usragrmnt']}") . $HTMLOUT . stdfoot();
?>