try in /inc/classes/BxDolFilesModule.php
find and remove what's not needed
~520
$sCaptionVal = ($this->sSendFileInfoFormCaption != '') ? $this->sSendFileInfoFormCaption : _t('_Info');
// processing of possible default values
$aInputValues = array('title', 'tags', 'description', 'type', $this->sUploadTypeLC);
foreach ($aInputValues as $sField) {
$sEmpty = $sField == 'type' ? 'upload' : '';
$sTemp = isset($aDefaultValues[$sField]) ? strip_tags($aDefaultValues[$sField]) : $sEmpty;
$aDefaultValues[$sField] = $sTemp;
}
$aForm = array(
'form_attrs' => array(
'id' => $this->sUploadTypeLC . '_file_info_form',
'method' => 'post',
'action' => $this->sWorkingFile,
'target' => 'upload_file_info_frame_' . $iFileID
),
'inputs' => array(
'header2' => array(
'type' => 'block_header',
'caption' => $sCaptionVal,
'collapsable' => true
),
'title' => array(
'type' => 'text',
'name' => 'title',
'caption' => _t('_Title'),
'required' => true,
'value' => $aDefaultValues['title']
),
'tags' => array(
'type' => 'text',
'name' => 'tags',
'caption' => _t('_Tags'),
'info' => _t('_Tags_desc'),
'value' => $aDefaultValues['tags']
),
'description' => array(
'type' => 'textarea',
'name' => 'description',
'caption' => _t('_Description'),
'required' => true,
'value' => $aDefaultValues['description']
),
'media_id' => array(
'type' => 'hidden',
'name' => 'file_id',
'value' => $iFileID,
),
'hidden_action' => array(
'type' => 'hidden',
'name' => 'action',
'value' => 'accept_file_info'
),
$this->sUploadTypeLC => array(
'type' => 'hidden',
'name' => $this->sUploadTypeLC,
'value' => $aDefaultValues[$this->sUploadTypeLC]
),
'type' => array(
'type' => 'hidden',
'name' => 'type',
'value' => $aDefaultValues['type']
)
),
);