Minor improvements (#245)

* Minor improvements

* Updated
This commit is contained in:
Roman Kelesidis 2023-09-17 15:25:05 +07:00 committed by GitHub
parent a823ee4430
commit 56019e1f71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 5 deletions

View File

@ -1,5 +1,13 @@
# 📖 Change Log # 📖 Change Log
## [v2.1.5-2023.09](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2023.09) (2023-10-04) (В разработке)
[Full Changelog](https://github.com/torrentpier/torrentpier-lts/compare/v2.1.5-2023.08...v2.1.5-2023.09)
**Merged pull requests:**
- Release v2.1.5-2023.09 🎉
- Minor improvements [\#245](https://github.com/torrentpier/torrentpier-lts/pull/245) ([belomaxorka](https://github.com/belomaxorka))
## [v2.1.5-2023.08-HotFix](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2023.08-HotFix) (2023-09-17) ## [v2.1.5-2023.08-HotFix](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2023.08-HotFix) (2023-09-17)
[Full Changelog](https://github.com/torrentpier/torrentpier-lts/compare/v2.1.5-2023.08...v2.1.5-2023.08-HotFix) [Full Changelog](https://github.com/torrentpier/torrentpier-lts/compare/v2.1.5-2023.08...v2.1.5-2023.08-HotFix)

View File

@ -318,6 +318,7 @@ function display_attachments($post_id)
'IMG_THUMB_SRC' => $thumb_source, 'IMG_THUMB_SRC' => $thumb_source,
'FILESIZE' => $filesize, 'FILESIZE' => $filesize,
'COMMENT' => $comment, 'COMMENT' => $comment,
'DOWNLOAD_COUNT' => declension((int)$attachments['_' . $post_id][$i]['download_count'], 'times'),
)); ));
} }
@ -338,9 +339,9 @@ function display_attachments($post_id)
'FILESIZE' => $filesize, 'FILESIZE' => $filesize,
'COMMENT' => $comment, 'COMMENT' => $comment,
'TARGET_BLANK' => $target_blank, 'TARGET_BLANK' => $target_blank,
'DOWNLOAD_COUNT' => sprintf($lang['DOWNLOAD_NUMBER'], $attachments['_' . $post_id][$i]['download_count']), 'DOWNLOAD_COUNT' => declension((int)$attachments['_' . $post_id][$i]['download_count'], 'times'),
)); ));
} }
} }
} }
} }

View File

@ -15,8 +15,8 @@ $domain_name = (!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : $do
$domain_ssl = false; $domain_ssl = false;
// Version info // Version info
$bb_cfg['tp_version'] = '2.1.5-2023.08-HotFix'; $bb_cfg['tp_version'] = '2.1.5-2023.09';
$bb_cfg['tp_release_date'] = '17-09-2023'; $bb_cfg['tp_release_date'] = '04-10-2023';
$bb_cfg['tp_release_state'] = 'LTS'; $bb_cfg['tp_release_state'] = 'LTS';
$bb_cfg['tp_zf_version'] = '2.4.13'; $bb_cfg['tp_zf_version'] = '2.4.13';

View File

@ -35,7 +35,7 @@
</p> </p>
<p class="attach_link"> <p class="attach_link">
<a href="{postrow.attach.cat_thumb_images.IMG_SRC}" target="_blank"><b>{postrow.attach.cat_thumb_images.DOWNLOAD_NAME}</b></a> <a href="{postrow.attach.cat_thumb_images.IMG_SRC}" target="_blank"><b>{postrow.attach.cat_thumb_images.DOWNLOAD_NAME}</b></a>
<span class="attach_stats med">({postrow.attach.cat_thumb_images.FILESIZE})</span> <span class="attach_stats med">({postrow.attach.cat_thumb_images.FILESIZE}, {L_DOWNLOADED}: {postrow.attach.cat_thumb_images.DOWNLOAD_COUNT})</span>
</p> </p>
<!-- IF postrow.attach.cat_thumb_images.COMMENT --> <!-- IF postrow.attach.cat_thumb_images.COMMENT -->
<p class="attach_comment med"> <p class="attach_comment med">