Bug #5294
Erreur de mime type wmv
Complexity:
Piece of cake
SCRUM pts - complexity:
0.5
Description
Dans la fonction public static function file_get_mime_type de inc/lib/document.lib.php il y a inversion entre wma et wmv:
'wma' => 'video/x-ms-wma',
'wmv' => 'audio/x-ms-wmv',
qui devrait ĂȘtre:
'wma' => 'audio/x-ms-wma',
'wmv' => 'video/x-ms-wmv',
Associated revisions
History
Updated by Yannick Warnier over 8 years ago
- Status changed from New to Assigned
- Assignee changed from Yannick Warnier to Carlos Moreira Conde da Silva
- Target version changed from 1.9 Stable to 1.9.2
- Estimated time set to 0.10 h
- Complexity changed from Normal to Piece of cake
- SCRUM pts - complexity changed from ? to 0.5
Updated by Julio Montoya over 8 years ago
- Status changed from Assigned to Bug resolved
- Assignee deleted (
Carlos Moreira Conde da Silva) - Estimated time changed from 0.10 h to 0.10 h
Fix was sent
Fixing 'wma' => 'audio/x-ms-wma', 'wmv' => 'video/x-ms-wmv', see #5294