Browse Source

Fix typo and remove extra tabs

Signed-off-by: Michael Eshom <[email protected]>
Michael Eshom 11 years ago
parent
commit
7d6568de46
2 changed files with 4 additions and 4 deletions
  1. 2 2
      Sources/Reports.php
  2. 2 2
      Sources/SendTopic.php

+ 2 - 2
Sources/Reports.php

@@ -392,7 +392,7 @@ function BoardPermissionsReport()
 		foreach ($boards as $id => $board)
 			if ($board['profile'] == $row['id_profile'])
 				$board_permissions[$id][$row['id_group']][$row['permission']] = $row['add_deny'];
-		
+
 		// Make sure we get every permission.
 		if (!isset($permissions[$row['permission']]))
 		{
@@ -400,7 +400,7 @@ function BoardPermissionsReport()
 			$permissions[$row['permission']] = array(
 				'title' => isset($txt['board_perms_name_' . $row['permission']]) ? $txt['board_perms_name_' . $row['permission']] : $row['permission'],
 			);
-		}		
+		}
 	}
 	$smcFunc['db_free_result']($request);
 

+ 2 - 2
Sources/SendTopic.php

@@ -587,9 +587,9 @@ function ReportToModerator2()
 		)
 	);
 
-	while ($row = $smcFunc['db_fetch_assoc']($request2))
+	while ($row = $smcFunc['db_fetch_assoc']($request3))
 		$real_mods[] = $row['id_member'];
-	$smcFunc['db_free_result']($request2);
+	$smcFunc['db_free_result']($request3);
 	
 	// Make sure we don't have any duplicates
 	$real_mods = array_unique($real_mods);