mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 05:43:55 -07:00
Minor improvements (#1509)
* Minor improvements * Update CHANGELOG.md * Update torrent_show_dl_list.php
This commit is contained in:
parent
75c9f34a73
commit
9940945824
4 changed files with 2 additions and 4 deletions
|
@ -10,7 +10,7 @@
|
|||
- Some security enhancements (Part 2) [\#1505](https://github.com/torrentpier/torrentpier/pull/1505) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Some improvements for integrity checker [\#1501](https://github.com/torrentpier/torrentpier/pull/1501) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Hide vote button in topic if guest [\#1507](https://github.com/torrentpier/torrentpier/pull/1507) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Minor improvements [\#1502](https://github.com/torrentpier/torrentpier/pull/1502), [\#1506](https://github.com/torrentpier/torrentpier/pull/1506) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- Minor improvements [\#1502](https://github.com/torrentpier/torrentpier/pull/1502), [\#1506](https://github.com/torrentpier/torrentpier/pull/1506), [\#1509](https://github.com/torrentpier/torrentpier/pull/1509) ([belomaxorka](https://github.com/belomaxorka))
|
||||
- New Crowdin updates [\#1504](https://github.com/torrentpier/torrentpier/pull/1504) ([Exileum](https://github.com/Exileum))
|
||||
|
||||
## [v2.4.3](https://github.com/torrentpier/torrentpier/tree/v2.4.3) (2024-06-09)
|
||||
|
|
|
@ -39,7 +39,6 @@ $ignoreFiles = [
|
|||
'styles/images/logo/logo.png'
|
||||
];
|
||||
|
||||
$lines = [];
|
||||
foreach ($checksumFile as $line) {
|
||||
$parts = explode(' ', $line);
|
||||
if (!isset($parts[0]) || !isset($parts[1])) {
|
||||
|
|
|
@ -74,7 +74,6 @@ define('COOKIE_PM', $c . 'pm');
|
|||
unset($c);
|
||||
|
||||
define('COOKIE_SESSION', 0);
|
||||
define('COOKIE_EXPIRED', TIMENOW - 31536000);
|
||||
define('COOKIE_PERSIST', TIMENOW + 31536000);
|
||||
|
||||
define('COOKIE_MAX_TRACKS', 90);
|
||||
|
|
|
@ -72,7 +72,7 @@ if ($show_dl_list) {
|
|||
$dl_count[$u['user_status']] = $u['username'];
|
||||
} else {
|
||||
$u_prof_href = ($u['user_id'] == GUEST_UID) ? '#' : PROFILE_URL . $u['user_id'] . "#torrent";
|
||||
$dl_cat[$u['user_status']] .= '<nobr><a class="' . $u_link_class . '" href="' . $u_prof_href . '" title="' . $u['last_modified_dlstatus'] . '">' . profile_url(['username' => $u['username'], 'user_rank' => $u['user_rank']]) . '</a></nobr>, ';
|
||||
$dl_cat[$u['user_status']] .= '<nobr><a class="' . $u_link_class . '" href="' . $u_prof_href . '" title="' . $u['last_modified_dlstatus'] . '">' . profile_url($u) . '</a></nobr>, ';
|
||||
$dl_count[$u['user_status']]++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue