This commit is contained in:
Roman Kelesidis 2024-08-31 19:19:28 +07:00
commit 2556e88e71
2 changed files with 5 additions and 2 deletions

View file

@ -153,7 +153,10 @@ foreach ($m3uData as $entry) {
$template->assign_vars([
'HAS_ITEMS' => (bool)$filesCount,
'PAGE_TITLE' => $lang['PLAYBACK_M3U'],
'FILES_COUNT' => sprintf($lang['BT_FLIST_FILE_PATH'], declension($filesCount, 'files')),
'ATTACH_ID' => $row['attach_id'],
'INFO_HASH' => $row['info_hash'] ?? $row['info_hash_v2'],
'FILES_COUNT' => $filesCount,
'FILES_COUNT_TITLE' => sprintf($lang['BT_FLIST_FILE_PATH'], declension($filesCount, 'files')),
'U_TOPIC' => TOPIC_URL . $topic_id,
]);

View file

@ -4,7 +4,7 @@
<thead>
<tr>
<th>#</th>
<th>{FILES_COUNT}</th>
<th>{FILES_COUNT_TITLE}</th>
<th>{L_STREAM}</th>
</tr>
</thead>