MyBB Community Forums

Full Version: Seperating the number periods.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I go about seperating the number periods in every instance where numbers are shown? For example, instead of 1234, one would see: 1,234.
Use number_format($number)
Smethead Wrote:Use number_format($number)
Where is that located? I can't find it.
number_format is a PHP function.

You should change line 593 of inc/functions_post.php. Change
$post['message'] = postify($post['message'], $forum['allowhtml'], $forum['allowmycode'], $allowsmilies, $forum['allowimgcode']);

to

$post['message'] = postify(number_format($post['message']), $forum['allowhtml'], $forum['allowmycode'], $allowsmilies, $forum['allowimgcode']);

You might have to change line 585 too
from

echo nl2br(htmlspecialchars($post['message']))."<br/>";

to

echo nl2br(htmlspecialchars(number_format($post['message'])))."<br/>";
Okay, thanks.