mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-25 07:35:48 -07:00
Updated
This commit is contained in:
parent
556d6fa60d
commit
c63bf02149
2 changed files with 2 additions and 2 deletions
|
@ -154,7 +154,7 @@ $template->assign_vars([
|
|||
'HAS_ITEMS' => (bool)$filesCount,
|
||||
'PAGE_TITLE' => $lang['PLAYBACK_M3U'],
|
||||
'ATTACH_ID' => $row['attach_id'],
|
||||
'INFO_HASH' => $row['info_hash'] ?? $row['info_hash_v2'],
|
||||
'INFO_HASH' => bin2hex($row['info_hash'] ?? $row['info_hash_v2']),
|
||||
'FILES_COUNT_TITLE' => sprintf($lang['BT_FLIST_FILE_PATH'], declension($filesCount, 'files')),
|
||||
'U_TOPIC' => TOPIC_URL . $topic_id,
|
||||
]);
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
ajax.exec({
|
||||
action: 'ffprobe_info',
|
||||
attach_id: {ATTACH_ID},
|
||||
info_hash: {INFO_HASH},
|
||||
info_hash: '{INFO_HASH}',
|
||||
file_index: file_index
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue