Merge branch 'hotfix/7.0.9'
This commit is contained in:
@@ -377,7 +377,7 @@ class EmailAccount extends Record implements
|
||||
}
|
||||
|
||||
foreach ($monitoredFolders as $folder) {
|
||||
$folder = mb_convert_encoding(trim($folder), 'UTF7-IMAP', 'UTF-8');
|
||||
$folder = mb_convert_encoding($folder, 'UTF7-IMAP', 'UTF-8');
|
||||
|
||||
$portionLimit = $this->getConfig()->get('personalEmailMaxPortionSize', self::PORTION_LIMIT);
|
||||
|
||||
|
||||
@@ -268,7 +268,7 @@ class InboundEmail extends RecordService implements
|
||||
}
|
||||
|
||||
foreach ($monitoredFolders as $folder) {
|
||||
$folder = mb_convert_encoding(trim($folder), 'UTF7-IMAP', 'UTF-8');
|
||||
$folder = mb_convert_encoding($folder, 'UTF7-IMAP', 'UTF-8');
|
||||
|
||||
$portionLimit = $this->config->get('inboundEmailMaxPortionSize', self::PORTION_LIMIT);
|
||||
|
||||
|
||||
@@ -158,11 +158,14 @@ define('views/notification/badge', 'view', function (Dep) {
|
||||
},
|
||||
|
||||
checkBypass: function () {
|
||||
var last = this.getRouter().getLast() || {};
|
||||
let last = this.getRouter().getLast() || {};
|
||||
|
||||
let pageAction = (last.options || {}).page || null;
|
||||
|
||||
if (
|
||||
last.controller === 'Admin' &&
|
||||
~['upgrade', 'extensions'].indexOf(last.action)
|
||||
last.action === 'page' &&
|
||||
~['upgrade', 'extensions'].indexOf(pageAction)
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user