mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-27 20:17:29 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
4972929258
|
@ -332,6 +332,7 @@
|
|||
- add hook displayPreviewThumb
|
||||
- add searching for mimetype in database
|
||||
- list of expired documents can be filtered by user
|
||||
- use quoted printable encoding instead of base64 for email subjects
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
Changes in version 5.1.39
|
||||
|
|
|
@ -205,7 +205,7 @@ class SeedDMS_EmailNotify extends SeedDMS_Notify {
|
|||
if($returnpath)
|
||||
$headers['Return-Path'] = $returnpath;
|
||||
$headers['To'] = $to;
|
||||
$preferences = array("input-charset" => "UTF-8", "output-charset" => "UTF-8");
|
||||
$preferences = array("input-charset" => "UTF-8", "output-charset" => "UTF-8", "scheme"=>"Q");
|
||||
$encoded_subject = iconv_mime_encode("Subject", getMLText($subject, $params, null, $lang), $preferences);
|
||||
$headers['Subject'] = substr($encoded_subject, strlen('Subject: '));
|
||||
$headers['Date'] = date('r', time());
|
||||
|
|
Loading…
Reference in New Issue
Block a user