mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-19 21:03:54 -07:00
Minor improvements (#1281)
This commit is contained in:
parent
2f8952b3bf
commit
0204cd0047
4 changed files with 272 additions and 265 deletions
|
@ -352,6 +352,9 @@ if (!defined('IN_TRACKER')) {
|
|||
define('PEERS_LIST_PREFIX', 'peers_list_');
|
||||
define('SCRAPE_LIST_PREFIX', 'scrape_list_');
|
||||
|
||||
// Init tracker
|
||||
require_once BB_PATH . '/bt/includes/init_tr.php';
|
||||
|
||||
header('Content-Type: text/plain');
|
||||
header('Pragma: no-cache');
|
||||
|
||||
|
@ -361,7 +364,4 @@ if (!defined('IN_TRACKER')) {
|
|||
dummy_exit(random_int(60, 2400));
|
||||
}
|
||||
}
|
||||
|
||||
// Init tracker
|
||||
require_once BB_PATH . '/bt/includes/init_tr.php';
|
||||
}
|
||||
|
|
|
@ -1195,10 +1195,10 @@ function bb_date($gmepoch, $format = false, $friendly_date = true)
|
|||
/**
|
||||
* Get user's torrent client string
|
||||
*
|
||||
* @param string $peerId
|
||||
* @return mixed|string
|
||||
* @param string $peer_id
|
||||
* @return string
|
||||
*/
|
||||
function get_user_torrent_client(string $peer_id): mixed
|
||||
function get_user_torrent_client(string $peer_id): string
|
||||
{
|
||||
static $clients = [
|
||||
'-AG' => 'Ares', '-AZ' => 'Vuze', '-A~' => 'Ares', '-BC' => 'BitComet',
|
||||
|
@ -1258,7 +1258,14 @@ function get_user_torrent_client(string $peer_id): mixed
|
|||
return $peer_id;
|
||||
}
|
||||
|
||||
function render_flag($code) {
|
||||
/**
|
||||
* Returns country flag by country code
|
||||
*
|
||||
* @param string $code
|
||||
* @return string
|
||||
*/
|
||||
function render_flag(string $code): string
|
||||
{
|
||||
static $iconExtension = '.svg';
|
||||
static $country_codes = [
|
||||
'AD' => 'Andorra',
|
||||
|
|
|
@ -514,7 +514,6 @@ $lang['AVATAR_PANEL'] = 'Avatar control panel';
|
|||
|
||||
$lang['WEBSITE'] = 'Website';
|
||||
$lang['LOCATION'] = 'Location';
|
||||
$lang['LOCATION_FLAGS'] = 'Flag images are rendered by country codes:';
|
||||
$lang['CONTACT'] = 'Contact';
|
||||
$lang['EMAIL_ADDRESS'] = 'E-mail address';
|
||||
$lang['SEND_PRIVATE_MESSAGE'] = 'Send private message';
|
||||
|
|
|
@ -514,6 +514,7 @@ $lang['AVATAR_PANEL'] = 'Avatar control panel';
|
|||
|
||||
$lang['WEBSITE'] = 'Website';
|
||||
$lang['LOCATION'] = 'Location';
|
||||
$lang['LOCATION_FLAGS'] = 'Flag images are rendered by country codes:';
|
||||
$lang['CONTACT'] = 'Contact';
|
||||
$lang['EMAIL_ADDRESS'] = 'E-mail address';
|
||||
$lang['SEND_PRIVATE_MESSAGE'] = 'Send private message';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue