mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 01:17:04 +03:00
Bugfix: Undefined variable: sParentFolderName
This commit is contained in:
parent
d09f4cd14a
commit
18e2049cf2
1 changed files with 1 additions and 1 deletions
|
|
@ -577,7 +577,7 @@ class ImapClient extends \MailSo\Net\NetClient
|
||||||
*/
|
*/
|
||||||
public function FolderHierarchyDelimiter(string $sFolderName = '') : ?string
|
public function FolderHierarchyDelimiter(string $sFolderName = '') : ?string
|
||||||
{
|
{
|
||||||
$oResponse = $this->SendRequestGetResponse('LIST', ['""', $this->EscapeString($sParentFolderName)]);
|
$oResponse = $this->SendRequestGetResponse('LIST', ['""', $this->EscapeString($sFolderName)]);
|
||||||
return ('LIST' === $oResponse[0]->ResponseList[1]) ? $oResponse[0]->ResponseList[3] : null;
|
return ('LIST' === $oResponse[0]->ResponseList[1]) ? $oResponse[0]->ResponseList[3] : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue