mirror of
https://github.com/torrentpier/torrentpier.git
synced 2024-12-15 00:21:17 -08:00
97a9b25bdd
* Fixed `admin_terns.php` textarea reset in preview mode * Update CHANGELOG.md
33 lines
998 B
PHP
33 lines
998 B
PHP
<?php
|
||
/**
|
||
* TorrentPier – Bull-powered BitTorrent tracker engine
|
||
*
|
||
* @copyright Copyright (c) 2005-2024 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';
|
||
|
||
$preview = isset($_POST['preview']);
|
||
|
||
if (isset($_POST['post']) && ($bb_cfg['terms'] !== $_POST['message'])) {
|
||
bb_update_config(['terms' => $_POST['message']]);
|
||
bb_die($lang['CONFIG_UPDATED']);
|
||
}
|
||
|
||
$template->assign_vars([
|
||
'S_ACTION' => 'admin_terms.php',
|
||
'EXT_LINK_NW' => $bb_cfg['ext_link_new_win'],
|
||
'MESSAGE' => $preview ? $_POST['message'] : $bb_cfg['terms'],
|
||
'PREVIEW_HTML' => $preview ? bbcode2html($_POST['message']) : '',
|
||
]);
|
||
|
||
print_page('admin_terms.tpl', 'admin');
|