From a1c008dc6b47e752338f376b5f9849f51b6c33fe Mon Sep 17 00:00:00 2001 From: Awilum Date: Wed, 26 Dec 2018 02:11:26 +0300 Subject: [PATCH] Themes: sort partials, templates and fieldsets! --- flextype/Themes.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flextype/Themes.php b/flextype/Themes.php index e793b95d..b8d8cb97 100644 --- a/flextype/Themes.php +++ b/flextype/Themes.php @@ -137,6 +137,9 @@ class Themes } } + // sort partials + sort($partials); + // return partials return $partials; } @@ -164,6 +167,9 @@ class Themes } } + // sort templates + sort($templates); + // return templates return $templates; } @@ -192,6 +198,9 @@ class Themes } } + // sort fieldsets + sort($fieldsets); + // return fieldsets return $fieldsets; }