[high]And this one is for people who just have the default pm box.[/high]
In privfolder template...
Find:
PHP Code:
<option value="-1" $folderselect[$sent]>$sentitemsname</option>
Add After:
PHP Code:
<option value="-2">Saved Messages</option>
Find:
PHP Code:
<option value="0">$inboxname</option>
Add After:
PHP Code:
<option value="-2">Saved Messages</option>
In private.php
Find:
PHP Code:
$DB_site->query("DELETE FROM privatemessage WHERE userid='".$bbuserinfo['userid']."'");
Replace with:
PHP Code:
$DB_site->query("DELETE FROM privatemessage WHERE userid='".$bbuserinfo['userid']."' AND folderid!='-2'");