file_form_alter(&$form, $form_state, $form_id)Implementation of hook_form_alter().
contributions/fileframework/file.module, line 421
<?php
function file_form_alter(&$form, $form_state, $form_id) {
switch ($form_id) {
case "system_file_system_settings":
// File module uses bitchache, so this setting is not used.
unset($form['file_downloads']);
break;
}
}
?>