mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 05:43:55 -07:00
Minor improvements (#911)
This commit is contained in:
parent
973005f5ed
commit
4ef31d2878
2 changed files with 3 additions and 2 deletions
|
@ -234,7 +234,8 @@ $lang['RULES_VOTE_CAN'] = 'You <b>can</b> vote in polls in this forum';
|
|||
$lang['RULES_VOTE_CANNOT'] = 'You <b>cannot</b> vote in polls in this forum';
|
||||
$lang['RULES_MODERATE'] = 'You <b>can</b> moderate this forum';
|
||||
|
||||
$lang['NO_TOPICS_POST_ONE'] = 'There are no posts in this forum.<br />Click on the <b>Post New Topic</b> link on this page to post one.';
|
||||
$lang['NO_TOPICS_POST_ONE'] = 'There are no posts in this forum yet<br />Click on the <b>New Topic</b> icon, and your post will be the first.';
|
||||
$lang['NO_RELEASES_POST_ONE'] = 'There are no releases in this forum yet<br />Click on the <b>New Release</b> icon, and your release will be the first.';
|
||||
|
||||
// Viewtopic
|
||||
$lang['VIEW_TOPIC'] = 'View topic';
|
||||
|
|
|
@ -498,7 +498,7 @@ if ($found_topics) {
|
|||
if ($only_new) {
|
||||
$no_topics_msg = $lang['NO_NEW_POSTS'];
|
||||
} else {
|
||||
$no_topics_msg = ($topic_days || $title_match) ? $lang['NO_SEARCH_MATCH'] : $lang['NO_TOPICS_POST_ONE'];
|
||||
$no_topics_msg = ($topic_days || $title_match) ? $lang['NO_SEARCH_MATCH'] : ($forum_data['allow_reg_tracker'] ? $lang['NO_RELEASES_POST_ONE'] : $lang['NO_TOPICS_POST_ONE']);
|
||||
}
|
||||
$template->assign_vars(array(
|
||||
'NO_TOPICS' => $no_topics_msg,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue