CreateMyBB Support Forums

Full Version: Minor glitch
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
On the forum listing where there are multiple pages, the page count is messed up:

[attachment=174]

Instead of the number of pages (which is what I assume should be there), I get the literal {1}. This is generated from the multipage template:


Code:
<div class="pagination">
<span class="pages">{$lang->multipage_pages}</span>
{$prevpage}{$start}{$mppage}{$end}{$nextpage}{$jumptopage}
</div>

Specifically, the {$lang->multipage_pages} variable. This template is identical in both my template set and the default one.
What did you change it to? Or do you think i have to fix something in the code.
Sorry, I wasn't clear. I haven't changed it at all. In fact, I haven't touched this template at all and it is identical to the one in the default template set. I'm not sure where the error is.

And I forgot to say that my forum is: https://bbb.createmybb4.com/index.php
Do you have any plugins enabled if so which ones.
Just two:

Board Announcements Manager (1.0)
Page Manager (1.5.2)
Any thoughts?
Does the same thing happen if you switch to the default theme?
Seems ok on my testforum on createmybb4
You are talking about the page that lists all the threads in the forum.
Yes, and also on the page that shows all the messages in a thread (when there is more than one page). These both use the multipage template. Can you post the contents of this template on your test forum so I can compare it with mine?

I also switched back to the default template set (as suggested by liondog) and it is doing the same thing which is no great surprise as I haven't changed this template in my template set.
Here is what my multipage template looks like
Code:
<div class="pagination">
<span class="pages">{$lang->multipage_pages}</span>
{$prevpage}{$start}{$mppage}{$end}{$nextpage}{$jumptopage}
</div>
Pages: 1 2