mirror of
https://github.com/torrentpier/torrentpier
synced 2025-07-16 10:03:11 -07:00
29 lines
960 B
PHP
29 lines
960 B
PHP
<?php
|
||
/**
|
||
* TorrentPier – Bull-powered BitTorrent tracker engine
|
||
*
|
||
* @copyright Copyright (c) 2005-2023 TorrentPier (https://torrentpier.com)
|
||
* @link https://github.com/torrentpier/torrentpier for the canonical source repository
|
||
* @license https://github.com/torrentpier/torrentpier/blob/master/LICENSE MIT License
|
||
*/
|
||
|
||
if (!empty($setmodules)) {
|
||
$module['GENERAL']['TERMS'] = basename(__FILE__);
|
||
return;
|
||
}
|
||
require __DIR__ . '/pagestart.php';
|
||
require INC_DIR . '/bbcode.php';
|
||
|
||
if (isset($_POST['post']) && $bb_cfg['terms'] != $_POST['message']) {
|
||
bb_update_config(array('terms' => $_POST['message']));
|
||
bb_die($lang['CONFIG_UPDATED']);
|
||
}
|
||
|
||
$template->assign_vars(array(
|
||
'S_ACTION' => 'admin_terms.php',
|
||
'EXT_LINK_NW' => $bb_cfg['ext_link_new_win'],
|
||
'MESSAGE' => $bb_cfg['terms'] ?: '',
|
||
'PREVIEW_HTML' => isset($_REQUEST['preview']) ? bbcode2html($_POST['message']) : '',
|
||
));
|
||
|
||
print_page('admin_terms.tpl', 'admin');
|