mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
Revert the last change.
This commit is contained in:
@@ -684,7 +684,7 @@ class RarInfo extends ArchiveReader
|
||||
'size' => isset($block['unp_size']) ? $block['unp_size'] : 0,
|
||||
'date' => !empty($block['utime']) ? $block['utime'] : (!empty($block['ftime']) ? self::dos2unixtime($block['ftime']) : 0),
|
||||
'pass' => isset($block['has_password']) ? ((int) $block['has_password']) : 0,
|
||||
'compressed' => (int) ($block['method'] != self::METHOD_STORE && $block['method'] != self::R50_METHOD_STORE),
|
||||
'compressed' => isset($block['method']) ? ((int) ($block['method'] != self::METHOD_STORE && $block['method'] != self::R50_METHOD_STORE)): 0,
|
||||
'next_offset' => $block['next_offset'],
|
||||
);
|
||||
if (!empty($block['is_dir'])) {
|
||||
|
||||
@@ -121,7 +121,7 @@
|
||||
{if isset($xxx.trailers) && $xxx.trailers != ''}
|
||||
<li><a href="#pane2" data-toggle="tab">Trailer</a></li>
|
||||
{/if}
|
||||
{if isset($nfo) && $nfo != ""}
|
||||
{if isset($nfo.nfo) && $nfo.nfo != ""}
|
||||
<li><a href="#pane3" data-toggle="tab">NFO</a></li>
|
||||
{/if}
|
||||
{if isset($similars) && $similars|@count > 1}
|
||||
|
||||
@@ -121,7 +121,7 @@
|
||||
{if isset($xxx.trailers) && $xxx.trailers != ''}
|
||||
<li><a href="#pane2" data-toggle="tab">Trailer</a></li>
|
||||
{/if}
|
||||
{if isset($nfo) && $nfo != ""}
|
||||
{if isset($nfo.nfo) && $nfo.nfo != ""}
|
||||
<li><a href="#pane3" data-toggle="tab">NFO</a></li>
|
||||
{/if}
|
||||
{if isset($similars) && $similars|@count > 1}
|
||||
|
||||
Reference in New Issue
Block a user