Skip to content

Commit

Permalink
Fix issue 3829 (#3830)
Browse files Browse the repository at this point in the history
  • Loading branch information
kabanon authored and LOBsTerr committed Mar 17, 2018
1 parent 130283a commit f26d0a1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Command/Debug/ThemeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ protected function themeList()
foreach ($themes as $themeId => $theme) {
$status = $this->getThemeStatus($theme);
$tableRows[] = [
$themeId, $theme->info['name'],
$status, $theme->info['version'],
$themeId,
$theme->info['name'],
$status,
(isset($theme->info['version'])) ? $theme->info['version'] : '',
];
}

Expand Down

0 comments on commit f26d0a1

Please sign in to comment.