mirror of
https://github.com/torrentpier/torrentpier.git
synced 2025-01-08 20:13:07 -08:00
fad09cf0eb
* Updated copyright year * Updated
19 lines
574 B
PHP
19 lines
574 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 (!defined('BB_ROOT')) {
|
||
die(basename(__FILE__));
|
||
}
|
||
|
||
$log_days_keep = (int)$bb_cfg['log_days_keep'];
|
||
|
||
if ($log_days_keep !== 0) {
|
||
DB()->query("DELETE FROM " . BB_LOG . " WHERE log_time < " . (TIMENOW - 86400 * $log_days_keep));
|
||
}
|