Skip to content

Commit

Permalink
Show OS version in System Report utility
Browse files Browse the repository at this point in the history
resolves #3784
  • Loading branch information
brandonkelly committed Feb 5, 2019
1 parent c29f1a8 commit 35e0a82
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG-v3.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes for Craft CMS 3.x

## Unreleased

### Changed
- The operating system name & version are now shown in the System Report utility. ([#3784](https://github.com/craftcms/cms/issues/3784))

## 3.1.8 - 2019-02-05

### Changed
Expand Down
1 change: 1 addition & 0 deletions src/utilities/SystemReport.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ private static function _appInfo(): array
{
return [
'PHP version' => App::phpVersion(),
'OS version' => PHP_OS . ' ' . php_uname('r'),
'Database driver & version' => self::_dbDriver(),
'Image driver & version' => self::_imageDriver(),
'Craft edition & version' => 'Craft ' . App::editionName(Craft::$app->getEdition()) . ' ' . Craft::$app->getVersion(),
Expand Down

0 comments on commit 35e0a82

Please sign in to comment.