Code Duplication    Length = 4-4 lines in 2 locations

addmedia.php 1 location

@@ 131-134 (lines=4) @@
128
	}
129
130
	// Thumbnail files must contain images.
131
	if (!empty($_FILES['thumbnail']['name']) && !preg_match('/^image/', $_FILES['thumbnail']['type'])) {
132
		FlashMessages::addMessage(I18N::translate('Thumbnail files must contain images.'));
133
		break;
134
	}
135
136
	// User-specified filename?
137
	if ($tag[0] == 'FILE' && $text[0]) {

admin_media_upload.php 1 location

@@ 97-100 (lines=4) @@
94
			}
95
96
			// Thumbnail files must contain images.
97
			if (!empty($_FILES['thumbnail' . $i]['name']) && !preg_match('/^image\/(png|gif|jpeg)/', $_FILES['thumbnail' . $i]['type'])) {
98
				FlashMessages::addMessage(I18N::translate('Thumbnail files must contain images.'));
99
				break;
100
			}
101
102
			// User-specified filename?
103
			$filename = Filter::post('filename' . $i);