mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-28 11:39:21 +03:00
Bugfix: Undefined array key "ThreadUid"
This commit is contained in:
parent
617dd995b5
commit
5cf3842b42
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ trait Messages
|
|||
$oParams->sSort = (string) $aValues['Sort'];
|
||||
$oParams->iPrevUidNext = (int) $aValues['UidNext'];
|
||||
$oParams->bUseThreads = !empty($aValues['UseThreads']);
|
||||
if ($oParams->bUseThreads) {
|
||||
if ($oParams->bUseThreads && isset($aValues['ThreadUid'])) {
|
||||
$oParams->iThreadUid = (int) $aValues['ThreadUid'];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue