hmm that's strange.. the original pm gauge hack only counted messages from the inbox and not the sent items directory.. but i changed that in my hack..it works fine on my own forums.. maybe i uploaded the wrong hack.. let me just check :ermm:
EDIT: OOOPS.. i've located the problem
in index.php find
Quote:
$pmpercent = round(($inboxpms[messages] / $pmquota) * 100,2);
|
and replace with
Quote:
$pmpercent = round(($allpm[messages] / $pmquota) * 100,2);
|