Topic: rank mod.

Hi. I would like to change how the ranking is shown for each user by inserting a keyword "Rank: " in front of the rank-name. Which files are affected and where in those files should I look in order to be able to implement this?

No electrons were harmed in the creation of this post.
However, many were excited and some may have enjoyed the experience.

Re: rank mod.

not sure, but find

// get_title() requires that an element 'username' be present in the array
$cur_post['username'] = $cur_post['poster'];
$user_title = get_title($cur_post);

in viewforum.php

try changing it to

// get_title() requires that an element 'username' be present in the array
$cur_post['username'] = $cur_post['poster'];
$user_title = "Rank:";
$user_title .= get_title($cur_post);

if this si the right spot in the code where it displays the rank, it should work.

Indocron
$theQuestion = (2*b) || !(2*b);