2003-07-11 22:33:59 +00:00
|
|
|
<?php
|
|
|
|
|
2003-08-02 00:47:27 +00:00
|
|
|
require_once("profile.inc");
|
2003-07-11 22:33:59 +00:00
|
|
|
|
|
|
|
$userid = $_GET['userid'];
|
|
|
|
|
2003-08-02 00:47:27 +00:00
|
|
|
// Check for recommendation or rejection votes.;
|
2003-07-11 22:33:59 +00:00
|
|
|
if ($_POST['recommend']) {
|
2003-08-02 00:47:27 +00:00
|
|
|
process_view_results("recommend", $userid);
|
|
|
|
exit();
|
2003-07-11 22:33:59 +00:00
|
|
|
} else if ($_POST['reject']) {
|
2003-08-02 00:47:27 +00:00
|
|
|
process_view_results("reject", $userid);
|
2003-07-11 22:33:59 +00:00
|
|
|
exit();
|
|
|
|
}
|
2003-08-02 00:47:27 +00:00
|
|
|
|
|
|
|
show_profile($userid, array_key_exists('verify', $_GET));
|
2003-07-15 22:29:39 +00:00
|
|
|
?>
|