Not case sensitive folder sort (fixes #26)

This commit is contained in:
RainLoop Team 2013-12-07 02:28:15 +04:00
parent 5474d02061
commit 4905377bac

View file

@ -1697,7 +1697,7 @@ class MailClient
return 1;
}
return \strnatcmp($oFolderA->FullName(), $oFolderB->FullName());
return \strnatcasecmp($oFolderA->FullName(), $oFolderB->FullName());
});
$oNamespace = $this->oImapClient->GetNamespace();