Code Duplication    Length = 4-4 lines in 2 locations

addmedia.php 1 location

@@ 138-141 (lines=4) @@
135
	}
136
137
	// Thumbnail files must contain images.
138
	if (!empty($_FILES['thumbnail']['name']) && !preg_match('/^image/', $_FILES['thumbnail']['type'])) {
139
		FlashMessages::addMessage(I18N::translate('Thumbnail files must contain images.'));
140
		break;
141
	}
142
143
	// User-specified filename?
144
	if ($tag[0] == 'FILE' && $text[0]) {

admin_media_upload.php 1 location

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