Code Duplication    Length = 7-9 lines in 2 locations

Sources/MoveTopic.php 2 locations

@@ 57-65 (lines=9) @@
54
55
	// Permission check!
56
	// @todo
57
	if (!allowedTo('move_any'))
58
	{
59
		if ($id_member_started == $user_info['id'])
60
		{
61
			isAllowedTo('move_own');
62
		}
63
		else
64
			isAllowedTo('move_any');
65
	}
66
67
	$context['move_any'] = $user_info['is_admin'] || $modSettings['topic_move_any'];
68
	$boards = array();
@@ 170-176 (lines=7) @@
167
		isAllowedTo('approve_posts');
168
169
	// Can they move topics on this board?
170
	if (!allowedTo('move_any'))
171
	{
172
		if ($id_member_started == $user_info['id'])
173
			isAllowedTo('move_own');
174
		else
175
			isAllowedTo('move_any');
176
	}
177
178
	checkSession();
179
	require_once($sourcedir . '/Subs-Post.php');