mirror of https://github.com/BOINC/boinc.git
parent
c02a7d30fe
commit
594da3cc4c
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue