Before, the feeds in the list weren't properly ordered. Uppercase values were before lowercase values. Now, the feed order is forced to ignore the case. See #3228
@@ -62,6 +62,10 @@ class FreshRSS_Category extends Minz_Model {
}
+ usort($this->feeds, function ($a, $b) {
+ return strnatcasecmp($a->name(), $b->name());
+ });
+
return $this->feeds;