I'm trying to sort and display the 50 most popular tags alphabetically. Currently I have
<?php
$tags = get_tags(array('sort' => 'most'), 50);
sort($tags);
echo tag_cloud($tags, uri('items/browse'));
?>
This sort of works, it arranges the tags alphabetically, but it does so in two separate groups. The first group is tags starting with a capital letter and the second group is tags with a lower case letter.

