Skip to content

Commit

Permalink
! fix #3561 label it as posts or topics to avoid confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
Spuds committed Jul 7, 2022
1 parent 35bd60f commit 50d44b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions themes/default/BoardIndex.template.php
Expand Up @@ -9,7 +9,7 @@
* copyright: 2011 Simple Machines (http://www.simplemachines.org)
* license: BSD, See included LICENSE.TXT for terms and conditions.
*
* @version 1.1.4
* @version 1.1.9
*
*/

Expand Down Expand Up @@ -190,7 +190,7 @@ function template_ic_recent_posts()
echo '
<li class="board_row hslice" id="recent_posts_content">
<h3 class="ic_section_header">
<a href="', $scripturl, '?action=recent"><i class="icon i-post-text"></i>', $txt['recent_posts'], '</a>
<a href="', $scripturl, '?action=recent"><i class="icon i-post-text"></i>', empty($settings['recent_post_topics']) ? $txt['recent_posts'] : $txt['recent_topics'], '</a>
</h3>';

// Only show one post.
Expand Down
1 change: 1 addition & 0 deletions themes/default/languages/english/index.english.php
Expand Up @@ -88,6 +88,7 @@
$txt['calendar'] = 'Calendar';
$txt['members'] = 'Members';
$txt['recent_posts'] = 'Recent Posts';
$txt['recent_topics'] = 'Recent Topics';

$txt['admin'] = 'Admin';
// Sub menu labels
Expand Down

0 comments on commit 50d44b7

Please sign in to comment.