Quote:
Originally Posted by Link14716
Actually, yes I do. The user data manager runs an intval() on reputation, dropping the decimal point. Easiest way to deal with this is probably a code change, just remember that you'll have to re-apply it whenever you upgrade vBulletin.
In /includes/class_dm_user.php, find:
PHP Code:
$reputation = intval($reputation);
Replace with:
PHP Code:
$reputation = strval($reputation) + 0;
Save, close, upload, etc.
There's probably a way to make a clever plugin achieve the same goal, but that should get the job done for now.
|
It worked! You sir, are a genius.
Absolutely amazing! Other mod writers would tell me something along the lines of "I won't support that" or a different discouraging remark if messing outside the mod's initial parameters.
Thank you so much!