Change sort by fileName on cms template directory list.

This commit is contained in:
Fumio Furukawa 2015-01-27 17:25:29 +09:00
parent 4a81e096fa
commit 11522d1010

View File

@ -161,7 +161,7 @@ class TemplateList extends WidgetBase
}
usort($normalizedItems, function ($a, $b) {
return strcmp($a->title, $b->title);
return strcmp($a->fileName, $b->fileName);
});
/*