From 9f944f617daa5626343fa55f229a63df71bed412 Mon Sep 17 00:00:00 2001 From: Awilum Date: Fri, 30 Aug 2019 14:11:07 +0300 Subject: [PATCH] refactor(core): themes refactor #186 --- flextype/core/Themes.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flextype/core/Themes.php b/flextype/core/Themes.php index fc24cebf..87270421 100644 --- a/flextype/core/Themes.php +++ b/flextype/core/Themes.php @@ -77,11 +77,11 @@ class Themes $themes[$theme['dirname']] = array_merge($theme_settings, $theme_manifest); } - // Save parsed themes list in the registry themes - $this->flextype['registry']->set('themes', $themes); + // Save parsed themes list in the registry themes + $this->flextype['registry']->set('themes', $themes); - // Save parsed themes list in the cache - $this->flextype['cache']->save($themes_cache_id, $themes); + // Save parsed themes list in the cache + $this->flextype['cache']->save($themes_cache_id, $themes); } }