I have played around with this for about 4 hours and I cant get it right. I have this hack installed
Quote:
In functions_reputation.php
Find (line 81):
Code:
$reputation_value = $post['reputation'];
Immediately after, ADD:
Code:
$reputation_power = fetch_reppower($post, $perms);
$post['reputationpower'] = $reputation_power;
Now, you can use $post[reputationpower] the same way you can use $post[reputation] in your postbit template...
__________________
Tony - webmaster@is300.net
(Done! From phpbb to vb3 - 1.5m posts/20k users)
|
Its from
here
I cant get the two to play nice together. I can get one or the other to work, not both. My question is where would I install this
Quote:
$reputation_power = fetch_reppower($post, $perms);
$post['reputationpower'] = $reputation_power;
|
to get this to work or am I on the wrong track here with this?