Browse Source

Its actually "reportc" :P

Signed-off-by: Suki <[email protected]>
Suki 11 years ago
parent
commit
e63b6c2de0
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Sources/ReportedPosts.php
  2. 1 1
      Sources/Subs-ReportedPosts.php

+ 1 - 1
Sources/ReportedPosts.php

@@ -46,7 +46,7 @@ function ReportedPosts()
 	$sub_actions = array(
 		'show' => 'ShowReports', // Both open and closed reports
 		'handle' => 'HandleReport', // Deals with closing/opening reports.
-		'disregard' => 'DisregardReport',
+		'disregard' => 'DisregardReport',  // Ignore/un-ignore
 		'details' => 'ReportDetails', // Shows a single report and its comments.
 		'handlecomment' => 'HandleComment', // CRUD actions for moderator comments.
 		'editcomment' => 'EditComment',

+ 1 - 1
Sources/Subs-ReportedPosts.php

@@ -389,7 +389,7 @@ function saveModComment($report_id, $data)
 	if (empty($data))
 		return false;
 
-	$data = array_merge(array($user_info['id'], $user_info['name'], 'modnote', ''), $data);
+	$data = array_merge(array($user_info['id'], $user_info['name'], 'reportc', ''), $data);
 
 	$smcFunc['db_insert']('',
 		'{db_prefix}log_comments',