diff options
Diffstat (limited to 'app/Models/Themes.php')
| -rw-r--r-- | app/Models/Themes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Themes.php b/app/Models/Themes.php index cd66723bf..033bbe2a0 100644 --- a/app/Models/Themes.php +++ b/app/Models/Themes.php @@ -21,7 +21,7 @@ class FreshRSS_Themes extends Minz_Model { $list = []; foreach ($themes_list as $theme_dir) { $theme = self::get_infos($theme_dir); - if (is_array($theme)) { + if (is_array($theme) && trim($theme['name']) !== '') { $list[$theme_dir] = $theme; } } |
