Displaying Plus sign (+) before positive rep points
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #2
RE: Displaying Plus sign (+) before positive rep points
You can try this way:

functions.php, find (by default, MyBB 1.6*, it's in line #2738):

PHP Code:
2738
2739
2740
2741
elseif($reputation > 0)
{
	$display_reputation .= "reputation_positive";
}


replace it with:

PHP Code:
2738
2739
2740
2741
2742
elseif($reputation > 0)
{
	$display_reputation .= "reputation_positive";
	$reputation = '+'.$reputation;
}


07-05-2011 01:59 AM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

Messages In This Thread
RE: Displaying Plus sign (+) before positive rep points - RateU - 07-05-2011 01:59 AM

 Standard Tools
Forum Jump: