Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Themes/default/Memberlist.template.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ function template_main()
echo '
<div class="main_section" id="memberlist">
<div class="pagesection">
', template_button_strip(Utils::$context['memberlist_buttons'], 'right'), '
<div class="pagelinks floatleft">', Utils::$context['page_index'], '</div>
', template_button_strip(Utils::$context['memberlist_buttons'], 'right'), '
</div>
<div class="cat_bar">
<h3 class="catbg">
Expand Down
4 changes: 2 additions & 2 deletions Themes/default/MessageIndex.template.php
Original file line number Diff line number Diff line change
Expand Up @@ -341,12 +341,12 @@ function template_main()

echo '
<div class="pagesection">
', template_button_strip(Utils::$context['normal_buttons'], 'right'), '
', Utils::$context['menu_separator'], '
<div class="pagelinks floatleft">
<a href="#main_content_section" class="button" id="bot">', Lang::getTxt('go_up', file: 'General'), '</a>
', Utils::$context['page_index'], '
</div>';
</div>
', template_button_strip(Utils::$context['normal_buttons'], 'right');

// Mobile action buttons (bottom)
if (!empty(Utils::$context['normal_buttons'])) {
Expand Down
14 changes: 7 additions & 7 deletions Themes/default/ModerationCenter.template.php
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,8 @@ function template_unapproved_posts()
</div>';
} else {
echo '
<div class="pagesection">';
<div class="pagesection">
<div class="pagelinks">', Utils::$context['page_index'], '</div>';

if (!empty(Theme::$current->options['display_quick_mod']) && Theme::$current->options['display_quick_mod'] == 1) {
echo '
Expand All @@ -395,7 +396,6 @@ function template_unapproved_posts()
}

echo '
<div class="pagelinks">', Utils::$context['page_index'], '</div>
</div>';

}
Expand Down Expand Up @@ -439,6 +439,11 @@ function template_unapproved_posts()
echo '
<div class="pagesection">';

if (!empty(Utils::$context['unapproved_items'])) {
echo '
<div class="pagelinks">', Utils::$context['page_index'], '</div>';
}

if (!empty(Theme::$current->options['display_quick_mod']) && Theme::$current->options['display_quick_mod'] == 1) {
echo '
<div class="floatright">
Expand All @@ -454,11 +459,6 @@ function template_unapproved_posts()
</div>';
}

if (!empty(Utils::$context['unapproved_items'])) {
echo '
<div class="pagelinks">', Utils::$context['page_index'], '</div>';
}

echo '
</div><!-- .pagesection -->
<input type="hidden" name="', Utils::$context['session_var'], '" value="', Utils::$context['session_id'], '">
Expand Down