Furry stuff, oekaki stuff, and other stuff.
You are not logged in.
[Edit] Oh, that link.
Howdy,
Deleting mail from the mailbox with the check boxes works great, but I was unable to delete a message that was opened using the delete link on that page - "no mode" error.
Added this back to functions.php (copied from Version 5.5.9):
// Mailbox Delete
if ($_GET['mail'] == 'delete') {
$MID = (int) $_GET['MID'];
$result = mysql_query ("SELECT * FROM {$OekakiPoteto_MemberPrefix}oekakimailbox WHERE MID='$MID'");
$row = mysql_fetch_array ($result);
if ($row['reciever'] != $OekakiU) {
report_err($langop_functions_err11);
} else {
$result = mysql_query ("DELETE FROM {$OekakiPoteto_MemberPrefix}oekakimailbox WHERE MID='$MID'");
errorCheck('mailbox.php');
}
}