Code Duplication    Length = 6-6 lines in 2 locations

Sources/Post.php 1 location

@@ 1233-1238 (lines=6) @@
1230
	checkSubmitOnce('register');
1231
1232
	// Mentions
1233
	if (!empty($modSettings['enable_mentions']) && allowedTo('mention'))
1234
	{
1235
		loadJavaScriptFile('jquery.caret.min.js', array('defer' => true), 'smf_caret');
1236
		loadJavaScriptFile('jquery.atwho.min.js', array('defer' => true), 'smf_atwho');
1237
		loadJavaScriptFile('mentions.js', array('defer' => true), 'smf_mentions');
1238
	}
1239
1240
	// quotedText.js
1241
	loadJavaScriptFile('quotedText.js', array('defer' => true), 'smf_quotedText');

Sources/Display.php 1 location

@@ 1474-1479 (lines=6) @@
1471
	loadJavaScriptFile('quotedText.js', array('defer' => true), 'smf_quotedText');
1472
1473
	// Mentions
1474
	if (!empty($modSettings['enable_mentions']) && allowedTo('mention'))
1475
	{
1476
		loadJavaScriptFile('jquery.atwho.min.js', array('defer' => true), 'smf_atwho');
1477
		loadJavaScriptFile('jquery.caret.min.js', array('defer' => true), 'smf_caret');
1478
		loadJavaScriptFile('mentions.js', array('defer' => true), 'smf_mentions');
1479
	}
1480
}
1481
1482
/**