Code Duplication    Length = 6-6 lines in 2 locations

Sources/Display.php 1 location

@@ 1345-1350 (lines=6) @@
1342
	loadJavaScriptFile('quotedText.js', array('defer' => true), 'smf_quotedText');
1343
1344
	// Mentions
1345
	if (!empty($modSettings['enable_mentions']) && allowedTo('mention'))
1346
	{
1347
		loadJavaScriptFile('jquery.atwho.min.js', array('defer' => true), 'smf_atwho');
1348
		loadJavaScriptFile('jquery.caret.min.js', array('defer' => true), 'smf_caret');
1349
		loadJavaScriptFile('mentions.js', array('defer' => true), 'smf_mentions');
1350
	}
1351
}
1352
1353
/**

Sources/Post.php 1 location

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