Hi all!
I just installed Simple Portal today, currently using the latest and greatest of both products (SMF 2.0 RC3, and SP 2.3.1) I just noticed something that 'bugs' me :)
Is it possible to encode all of the numbers used to use the forum number format? For example, I have my format set to: 1,234 (with a comma thousands seperator) Seems like on the left hand side, the numbers are in this format, while the numbers on the right hand side are in plain format (1234 - no comma). This could just be coincidence about left vs right. Feel free to take a peek at my home page and you'll see for your self.
Thanks!
You mean the Top Boards block doesn't respect number format?
Yes, and Top Poster as well (when I had it set to All time).
Sources/PortalBlocks.php
'posts' => $row['posts'],
'posts' => comma_format($row['posts']),
$board['num_topics'], ' | ', $txt['posts'], ': ', $board['num_posts']
comma_format($board['num_topics']), ' | ', $txt['posts'], ': ', comma_format($board['num_posts'])
Will also be fixed in 2.3.2 hopefully.
Thank you!!! Fixed it right up :)