Browse Source

Fix explode() arguments order (#8176)

pull/8503/head
Aleksander Machniak 4 years ago
parent
commit
36615aa0c5
  1. 2
      program/include/rcmail_attachment_handler.php

2
program/include/rcmail_attachment_handler.php

@ -308,7 +308,7 @@ class rcmail_attachment_handler
*/
public function html()
{
list($type, $subtype) = explode($this->mimetype, '/');
list($type, $subtype) = explode('/', $this->mimetype);
$part = (object) [
'charset' => $this->charset,
'ctype_secondary' => $subtype,

Loading…
Cancel
Save