Quote:
Originally Posted by dano
I want to install this, but want to make sure this issue is fixed. Bump for the creator.
|
I just installed this and love it.
At first, I had the same problem as TWTCommish and (possibly) Club3G and I thought the instructions missed something, but after re-reading them, it seems like it's just something that may be easily overlooked.
Where it reads:
Code:
***** Below:
eval('$post[\'reputationdisplay\'] .= "' . fetch_template('postbit_reputation') . '";');
}
***** Add:
// Reputation Bar Hack -- START
if ($post['reputation'] > 1500) {
$post['reputationdisplay'] .= "<img src=\"$stylevar[imgdir_reputation]/reputation_endright.gif\" border=\"0\" />";
}
// Reputation Bar Hack -- END
Perhaps some better wording would be:
Code:
***** Below:
eval('$post[\'reputationdisplay\'] .= "' . fetch_template('postbit_reputation') . '";');
}
***** Add BELOW:
// Reputation Bar Hack -- START
if ($post['reputation'] > 1500) {
$post['reputationdisplay'] .= "<img src=\"$stylevar[imgdir_reputation]/reputation_endright.gif\" border=\"0\" />";
}
// Reputation Bar Hack -- END
The curly brace is easily lost because in the text file, it's indented way over to the right. It makes all the difference in the world.