mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 13:54:02 -07:00
Minor improvements (#1728)
* Minor improvements * Update CHANGELOG.md * Update filelist.tpl * Update Torrent.php
This commit is contained in:
parent
2e5b157ede
commit
4a076a09cc
3 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
||||||
- Fixed searching by username in `memberlist.php` [\#1721](https://github.com/torrentpier/torrentpier/pull/1721) ([belomaxorka](https://github.com/belomaxorka))
|
- Fixed searching by username in `memberlist.php` [\#1721](https://github.com/torrentpier/torrentpier/pull/1721) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Set `cursor: pointer;` for buttons, inputs (buttons) [\#1710](https://github.com/torrentpier/torrentpier/pull/1710), [\#1711](https://github.com/torrentpier/torrentpier/pull/1711) ([belomaxorka](https://github.com/belomaxorka))
|
- Set `cursor: pointer;` for buttons, inputs (buttons) [\#1710](https://github.com/torrentpier/torrentpier/pull/1710), [\#1711](https://github.com/torrentpier/torrentpier/pull/1711) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Some updater improvements [\#1725](https://github.com/torrentpier/torrentpier/pull/1725) ([belomaxorka](https://github.com/belomaxorka))
|
- Some updater improvements [\#1725](https://github.com/torrentpier/torrentpier/pull/1725) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Minor improvements [\#1705](https://github.com/torrentpier/torrentpier/pull/1705), [\#1713](https://github.com/torrentpier/torrentpier/pull/1713), [\#1715](https://github.com/torrentpier/torrentpier/pull/1715), [\#1717](https://github.com/torrentpier/torrentpier/pull/1717), [\#1719](https://github.com/torrentpier/torrentpier/pull/1719), [\#1720](https://github.com/torrentpier/torrentpier/pull/1720) ([belomaxorka](https://github.com/belomaxorka))
|
- Minor improvements [\#1705](https://github.com/torrentpier/torrentpier/pull/1705), [\#1713](https://github.com/torrentpier/torrentpier/pull/1713), [\#1715](https://github.com/torrentpier/torrentpier/pull/1715), [\#1717](https://github.com/torrentpier/torrentpier/pull/1717), [\#1719](https://github.com/torrentpier/torrentpier/pull/1719), [\#1720](https://github.com/torrentpier/torrentpier/pull/1720), [\#1728](https://github.com/torrentpier/torrentpier/pull/1728) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Updated deps [\#1723](https://github.com/torrentpier/torrentpier/pull/1723) ([belomaxorka](https://github.com/belomaxorka))
|
- Updated deps [\#1723](https://github.com/torrentpier/torrentpier/pull/1723) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- New Crowdin updates [\#1704](https://github.com/torrentpier/torrentpier/pull/1704), [\#1706](https://github.com/torrentpier/torrentpier/pull/1706), [\#1714](https://github.com/torrentpier/torrentpier/pull/1714), [\#1716](https://github.com/torrentpier/torrentpier/pull/1716) ([Exileum](https://github.com/Exileum))
|
- New Crowdin updates [\#1704](https://github.com/torrentpier/torrentpier/pull/1704), [\#1706](https://github.com/torrentpier/torrentpier/pull/1706), [\#1714](https://github.com/torrentpier/torrentpier/pull/1714), [\#1716](https://github.com/torrentpier/torrentpier/pull/1716) ([Exileum](https://github.com/Exileum))
|
||||||
|
|
||||||
|
|
|
@ -100,7 +100,7 @@ class Torrent
|
||||||
global $lang, $bb_cfg, $log_action;
|
global $lang, $bb_cfg, $log_action;
|
||||||
|
|
||||||
$attach_id = (int)$attach_id;
|
$attach_id = (int)$attach_id;
|
||||||
$post_id = $topic_id = $topic_title = $forum_id = $info_hash = null;
|
$post_id = $topic_id = $topic_title = $forum_id = null;
|
||||||
|
|
||||||
// Get torrent info
|
// Get torrent info
|
||||||
if ($torrent = self::get_torrent_info($attach_id)) {
|
if ($torrent = self::get_torrent_info($attach_id)) {
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
<td>{filelist.ROW_NUMBER}</td>
|
<td>{filelist.ROW_NUMBER}</td>
|
||||||
<td>{filelist.FILE_PATH}</td>
|
<td>{filelist.FILE_PATH}</td>
|
||||||
<td>{filelist.FILE_LENGTH}</td>
|
<td>{filelist.FILE_LENGTH}</td>
|
||||||
<td>{filelist.FILE_HASH}</td>
|
<td><span class="copyElement" data-clipboard-text="{filelist.FILE_HASH}" title="{L_COPY_TO_CLIPBOARD}">{filelist.FILE_HASH}</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
<!-- END filelist -->
|
<!-- END filelist -->
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue