diff --git a/CHANGELOG-v3.md b/CHANGELOG-v3.md index 9e5036eafbd..16f19ac20c9 100644 --- a/CHANGELOG-v3.md +++ b/CHANGELOG-v3.md @@ -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 diff --git a/src/utilities/SystemReport.php b/src/utilities/SystemReport.php index 2af4d7dca1e..947eda67cd7 100644 --- a/src/utilities/SystemReport.php +++ b/src/utilities/SystemReport.php @@ -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(),