Quote:
03-08-03 at 08:25 PM -Sidekick- said this in Post #23
2 things I'd like to point out.
When I empty everything out of my folders, it says my folders are 1% full. How can they be 1% full when there's nothing in them?
Also, when everything is empty is says, "Your PM folders:" and then nothing. Could you make it when all folders are empty that line disappears as well? Or maybe after that it says All Folders Empty or something.
|
hmm.. i'll have to check on that
EDIT: It says 0% on my testboard.. I might have edited it and forgot to upload.. I'll try to sort it out..
EDIT2: done... it says 0% now and when you have 0 pms the line saying "Your PM folders:" disappears.. You can either re-install the entire hack or follow the instruction bellow:
In index.php find:
Quote:
if ($pmpercent < 50) {$pmstatus = "<font color=lime>Low</font>";}
|
Add above:
Quote:
if ($pmpercent != "0") {$pmfolderlinks = "<br>Your folders:";} else {$pmfolderlinks = "";}
|
In index.php find:
Quote:
if ($allpm[messages] < 1) {
$pmpercent = "1";
}
|
Replace with:
Quote:
if ($allpm[messages] < 1) {
$pmpercent = "0";
}
|
In forumhome_pmloggedin find:
Quote:
Your Inbox is $pmpercent% full - Current PM status: <b>$pmstatus</b><br>Your PM folders: $pmfolderlink
|
Replace with:
Quote:
Your Inbox is $pmpercent% full - Current PM status: <b>$pmstatus</b>$pmfolderlinks $pmfolderlink
|
Done

thanks for pointing it out, sidekick