Fix so mime_content_type check in Installer uses files that should always be available (i.e. from program/resources) (#6599)

pull/6611/head
Aleksander Machniak 5 years ago
parent 74fe74bf7d
commit 6e74498656

@ -61,6 +61,7 @@ CHANGELOG Roundcube Webmail
- Fix bug in parsing some IMAP command responses that include unsolicited replies (#6577)
- Fix PHP 7.2 compatibility in debug_logger plugin (#6586)
- Fix so ANY record is not used for email domain validation, use A, MX, CNAME, AAAA instead (#6581)
- Fix so mime_content_type check in Installer uses files that should always be available (i.e. from program/resources) (#6599)
RELEASE 1.4-beta
----------------

@ -510,10 +510,9 @@ class rcmail_install
{
$errors = array();
$files = array(
'skins/larry/images/roundcube_logo.png' => 'image/png',
'program/resources/blank.tiff' => 'image/tiff',
'program/resources/blocked.gif' => 'image/gif',
'skins/larry/README' => 'text/plain',
'program/resources/tinymce/video.png' => 'image/png',
'program/resources/blank.tiff' => 'image/tiff',
'program/resources/blocked.gif' => 'image/gif',
);
foreach ($files as $path => $expected) {

Loading…
Cancel
Save