Code Duplication    Length = 2-2 lines in 2 locations

Sources/Profile-View.php 1 location

@@ 526-527 (lines=2) @@
523
		removeMessage((int) $_GET['delete']);
524
525
		// Add it to the mod log.
526
		if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id']))
527
			logAction('delete', array('topic' => $info[2], 'subject' => $info[0], 'member' => $info[1], 'board' => $info[3]));
528
529
		// Back to... where we are now ;).
530
		redirectexit('action=profile;u=' . $memID . ';area=showposts;start=' . $_GET['start']);

Sources/Display.php 1 location

@@ 1854-1855 (lines=2) @@
1851
		removeMessage($message);
1852
1853
		// Log this moderation action ;).
1854
		if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id']))
1855
			logAction('delete', array('topic' => $topic, 'subject' => $info[0], 'member' => $info[1], 'board' => $board));
1856
	}
1857
1858
	redirectexit(!empty($topicGone) ? 'board=' . $board : 'topic=' . $topic . '.' . $_REQUEST['start']);