mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-11 00:14:50 +03:00
Not case sensitive folder sort (fixes #26)
This commit is contained in:
parent
5474d02061
commit
4905377bac
1 changed files with 1 additions and 1 deletions
|
|
@ -1697,7 +1697,7 @@ class MailClient
|
|||
return 1;
|
||||
}
|
||||
|
||||
return \strnatcmp($oFolderA->FullName(), $oFolderB->FullName());
|
||||
return \strnatcasecmp($oFolderA->FullName(), $oFolderB->FullName());
|
||||
});
|
||||
|
||||
$oNamespace = $this->oImapClient->GetNamespace();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue