svn path=/trunk/boinc/; revision=12806
This commit is contained in:
Rytis Slatkevičius 2007-06-02 17:11:19 +00:00
parent c02a7d30fe
commit 594da3cc4c
1 changed files with 5 additions and 4 deletions

View File

@ -42,7 +42,6 @@ if ($action == "inbox") {
}
end_table();
}
} elseif ($action == "read") {
$id = get_int("id");
$message = mysql_query("SELECT * FROM private_messages WHERE id=".$id." AND userid=".$logged_in_user->id);
@ -73,6 +72,7 @@ if ($action == "inbox") {
}
} elseif ($action == "new") {
check_banished(new User($logged_in_user));
pm_create_new();
} elseif ($action == "delete") {
$id = get_int("id", true);
@ -105,6 +105,7 @@ if ($action == "inbox") {
}
}
} elseif ($action == "send") {
check_banished(new User($logged_in_user));
check_tokens($logged_in_user->authenticator);
$to = stripslashes(post_str("to", true));