mirror of https://github.com/BOINC/boinc.git
21 lines
337 B
PHP
21 lines
337 B
PHP
<?php
|
|
|
|
require_once("../inc/profile.inc");
|
|
|
|
db_init();
|
|
|
|
$userid = $_GET['userid'];
|
|
|
|
// Check for recommendation or rejection votes
|
|
|
|
if ($_POST['recommend']) {
|
|
process_view_results("recommend", $userid);
|
|
exit();
|
|
} else if ($_POST['reject']) {
|
|
process_view_results("reject", $userid);
|
|
exit();
|
|
}
|
|
|
|
show_profile($userid);
|
|
?>
|