Ticket #15586: wp15586-upload_type-no-index-warning.diff
File wp15586-upload_type-no-index-warning.diff, 558 bytes (added by , 14 years ago) |
---|
-
movabletype-importer.php
230 230 } 231 231 232 232 function select_authors() { 233 if ( $_POST['upload_type'] === 'ftp') {233 if ( isset( $_POST['upload_type'] ) && 'ftp' === $_POST['upload_type'] ) { 234 234 $file['file'] = WP_CONTENT_DIR . '/mt-export.txt'; 235 235 if ( !file_exists($file['file']) ) 236 236 $file['error'] = __('<code>mt-export.txt</code> does not exist', 'movabletype-importer');