Verified Commit 47c383dd authored by Dave Long's avatar Dave Long
Browse files

Issue #3379819 by kim.pepper, smustgrave, RoSk0: Display the...

Issue #3379819 by kim.pepper, smustgrave, RoSk0: Display the deployment_identifier on the status page

(cherry picked from commit 82032279)
parent 3913db9d
Loading
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -978,6 +978,17 @@ function system_requirements($phase) {
    }
  }

  // Display the deployment identifier if set.
  if ($phase == 'runtime') {
    if ($deployment_identifier = Settings::get('deployment_identifier')) {
      $requirements['deployment identifier'] = [
        'title' => t('Deployment identifier'),
        'value' => $deployment_identifier,
        'severity' => REQUIREMENT_INFO,
      ];
    }
  }

  // Verify the update.php access setting
  if ($phase == 'runtime') {
    if (Settings::get('update_free_access')) {