Code Duplication    Length = 6-6 lines in 2 locations

Sources/Display.php 1 location

@@ 1315-1320 (lines=6) @@
1312
	loadJavascriptFile('quotedText.js', array('defer' => true), 'smf_quotedText');
1313
1314
	// Mentions
1315
	if (!empty($modSettings['enable_mentions']) && allowedTo('mention'))
1316
	{
1317
		loadJavascriptFile('jquery.atwho.min.js', array('defer' => true), 'smf_atwho');
1318
		loadJavascriptFile('jquery.caret.min.js', array('defer' => true), 'smf_caret');
1319
		loadJavascriptFile('mentions.js', array('defer' => true), 'smf_mentions');
1320
	}
1321
}
1322
1323
/**

Sources/Post.php 1 location

@@ 1182-1187 (lines=6) @@
1179
	checkSubmitOnce('register');
1180
1181
	// Mentions
1182
	if (!empty($modSettings['enable_mentions']) && allowedTo('mention'))
1183
	{
1184
		loadJavascriptFile('jquery.caret.min.js', array('defer' => true), 'smf_caret');
1185
		loadJavascriptFile('jquery.atwho.min.js', array('defer' => true), 'smf_atwho');
1186
		loadJavascriptFile('mentions.js', array('defer' => true), 'smf_mentions');
1187
	}
1188
1189
	// quotedText.js
1190
	loadJavascriptFile('quotedText.js', array('defer' => true), 'smf_quotedText');