mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-38468 Files API: fixed the support for MTHML (MIME HTML: web page archive) files
This commit is contained in:
parent
373a8e052c
commit
2aecb84d01
@ -1756,5 +1756,21 @@ function xmldb_main_upgrade($oldversion) {
|
||||
// No savepoint needed for this change.
|
||||
}
|
||||
|
||||
if ($oldversion < 2013032200.01) {
|
||||
// Fixing possible wrong MIME type for MIME HTML (MHTML) files.
|
||||
$extensions = array('%.mht', '%.mhtml');
|
||||
$select = $DB->sql_like('filename', '?', false);
|
||||
foreach ($extensions as $extension) {
|
||||
$DB->set_field_select(
|
||||
'files',
|
||||
'mimetype',
|
||||
'message/rfc822',
|
||||
$select,
|
||||
array($extension)
|
||||
);
|
||||
}
|
||||
upgrade_main_savepoint(true, 2013032200.01);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -1513,6 +1513,8 @@ function &get_mimetypes_array() {
|
||||
'mp4' => array ('type'=>'video/mp4', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
|
||||
'm4v' => array ('type'=>'video/mp4', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
|
||||
'm4a' => array ('type'=>'audio/mp4', 'icon'=>'mp3', 'groups'=>array('audio'), 'string'=>'audio'),
|
||||
'mht' => array ('type'=>'message/rfc822', 'icon'=>'archive'),
|
||||
'mhtml'=> array ('type'=>'message/rfc822', 'icon'=>'archive'),
|
||||
'mpeg' => array ('type'=>'video/mpeg', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
|
||||
'mpe' => array ('type'=>'video/mpeg', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
|
||||
'mpg' => array ('type'=>'video/mpeg', 'icon'=>'mpeg', 'groups'=>array('video','web_video'), 'string'=>'video'),
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2013032200.00; // YYYYMMDD = weekly release date of this DEV branch
|
||||
$version = 2013032200.01; // YYYYMMDD = weekly release date of this DEV branch
|
||||
// RR = release increments - 00 in DEV branches
|
||||
// .XX = incremental changes
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user