Browse Source

Fix syntax error.

pull/135/head
Adam Vessey 12 years ago
parent
commit
c1b3890357
  1. 2
      fedora_repository.module

2
fedora_repository.module

@ -256,7 +256,7 @@ function fedora_repository_ingest_form_validate($form, &$form_state) {
t('The uploaded file\'s mimetype (@mime) is not associated with this Content Model. The allowed types are: @allowed', array( t('The uploaded file\'s mimetype (@mime) is not associated with this Content Model. The allowed types are: @allowed', array(
'@mime' => $dformat, '@mime' => $dformat,
'@allowed' => implode(', ', $allowedMimeTypes), '@allowed' => implode(', ', $allowedMimeTypes),
)); )));
file_delete($file); file_delete($file);
return; return;
} }

Loading…
Cancel
Save