Find
Tip: This may be a partial find and not the whole line.
Code: Select All
if (!empty($ranks['normal']))
Replace With
Tip: Replace the preceding line(s) to find with the following lines.
Code: Select All
//Multi-rank theme: find our theme, defaulting to theme 1 if the user chose an invalid value
if (!empty($ranks[''.$rank_theme]))
{
$theme = $ranks[''.$rank_theme];
}
else
{
//Assume theme 1 (default) always exists
$theme = $ranks['1'];
}
if (!empty($theme))
Code: Select all
function get_user_rank($user_rank, $user_posts, &$rank_title, &$rank_img, &$rank_img_src)
Code: Select all
&$rank_img_src
Code: Select all
, $rank_theme = 1
Bump...IBBoard wrote:Does anyone else have any more feedback? Is the mod now correctly documented and functioning? I've had eleven downloads of 0.1.4, so there must be some people planning to install it