Following these guidelines will help the moderators deal with your report in a timely fashion.
foreach($Type['guidelines'] as $Guideline) {
?>
=$Guideline?>
} ?>
In short, please include as much detail as possible when reporting. Thank you.
include(SERVER_ROOT.'/classes/class_text.php'); // Text formatting class
$Text = new TEXT;
switch($Short) {
case "user" :
$DB->query("SELECT Username FROM users_main WHERE ID=".$ID);
if($DB->record_count() < 1) {
error(404);
}
list($Username) = $DB->next_record();
?>
You are reporting the user =display_str($Username)?>
break;
case "request_update" :
$NoReason = true;
$DB->query("SELECT Title, Description, TorrentID FROM requests WHERE ID=".$ID);
if($DB->record_count() < 1) {
//error(404);
}
list($Name, $Desc, $Filled) = $DB->next_record();
?>
You are reporting the request:
Title
Description
Filled?
=display_str($Name)?>
=$Text->full_format($Desc)?>
=($Filled == 0 ? 'No' : 'Yes')?>
It will greatly increase the turnover rate of the updates if you can fill in as much of the following details in as possible
break;
case "request" :
$DB->query("SELECT Title, Description, TorrentID FROM requests WHERE ID=".$ID);
if($DB->record_count() < 1) {
//error(404);
}
list($Name, $Desc, $Filled) = $DB->next_record();
?>
You are reporting the request:
Title
Description
Filled?
=display_str($Name)?>
=$Text->full_format($Desc)?>
=($Filled == 0 ? 'No' : 'Yes')?>
break;
case "collage" :
$DB->query("SELECT Name, Description FROM collages WHERE ID=".$ID);
if($DB->record_count() < 1) {
error(404);
}
list($Name, $Desc) = $DB->next_record();
?>
You are reporting the collage:
Title
Description
=display_str($Name)?>
=$Text->full_format($Desc)?>
break;
case "thread" :
$DB->query("SELECT ft.Title, ft.ForumID, um.Username FROM forums_topics AS ft JOIN users_main AS um ON um.ID=ft.AuthorID WHERE ft.ID=".$ID);
if($DB->record_count() < 1) {
error(404);
}
list($Title, $ForumID, $Username) = $DB->next_record();
$DB->query("SELECT MinClassRead FROM forums WHERE ID = ".$ForumID);
list($MinClassRead) = $DB->next_record();
if ($MinClassRead > $LoggedUser['Class']) {
?>
Permission Denied!
show_footer();
die(); }
?>
You are reporting the thread:
Username
Title
=display_str($Username)?>
=display_str($Title)?>
break;
case "post" :
$DB->query("SELECT fp.Body, fp.TopicID, um.Username FROM forums_posts AS fp JOIN users_main AS um ON um.ID=fp.AuthorID WHERE fp.ID=".$ID);
if($DB->record_count() < 1) {
error(404);
}
list($Body, $TopicID, $Username) = $DB->next_record();
$DB->query("SELECT ForumID FROM forums_topics WHERE ID = ".$TopicID);
list($ForumID) = $DB->next_record();
$DB->query("SELECT MinClassRead FROM forums WHERE ID = ".$ForumID);
list($MinClassRead) = $DB->next_record();
if ($MinClassRead > $LoggedUser['Class']) {
?>
Permission Denied!
show_footer();
die();
}
?>
You are reporting the post:
Username
Body
=display_str($Username)?>
=$Text->full_format($Body)?>
break;
case "requests_comment" :
case "torrents_comment" :
case "collages_comment" :
$Table = $Short.'s';
if($Short == "collages_comment") {
$Column = "UserID";
} else {
$Column = "AuthorID";
}
$DB->query("SELECT ".$Short.".Body, um.Username FROM ".$Table." AS ".$Short." JOIN users_main AS um ON um.ID=".$Short.".".$Column." WHERE ".$Short.".ID=".$ID);
if($DB->record_count() < 1) {
error(404);
}
list($Body, $Username) = $DB->next_record();
?>