Hi,
I noticed by using the keywords plugin that keywords were not sorted alphabetically if there were both words starting with uppercase and lowercase.
The order is case sensitive.
So I changed in the file plugins/blocks/keywordCloud/KeywordCloudBlockPlugin.inc.php the code as folow:
ksort($keywords);
By the code as folow:
uksort($keywords,‘strcasecmp’);
And it works fine.
Hélène