diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-10-10 10:26:08 -0700 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-10-10 10:26:08 -0700 |
commit | e27ec205f7d9fc1398f7c46efe5a6c5e216bc3f3 (patch) | |
tree | 993c6ecbdfb36e32f7d62d2141358791b96991fa /modules/system/system.install | |
parent | 190af5229b324e4426bfd36b06f585976e7db501 (diff) | |
download | brdo-e27ec205f7d9fc1398f7c46efe5a6c5e216bc3f3.tar.gz brdo-e27ec205f7d9fc1398f7c46efe5a6c5e216bc3f3.tar.bz2 |
Issue #1799116 by jwilson3: Standardize on installation profile terminology
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index d468b05e2..df0db710c 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -16,7 +16,7 @@ function system_requirements($phase) { global $base_url; $requirements = array(); - // Ensure translations don't break at install time + // Ensure translations don't break during installation. $t = get_t(); // Report Drupal version @@ -28,8 +28,8 @@ function system_requirements($phase) { 'weight' => -10, ); - // Display the currently active install profile, if the site - // is not running the default install profile. + // Display the currently active installation profile, if the site + // is not running the default installation profile. $profile = drupal_get_profile(); if ($profile != 'standard') { $info = system_get_info('module', $profile); @@ -308,7 +308,7 @@ function system_requirements($phase) { variable_get('file_private_path', FALSE), ); - // Do not check for the temporary files directory at install time + // Do not check for the temporary files directory during installation // unless it has been set in settings.php. In this case the user has // no alternative but to fix the directory if it is not writable. if ($phase == 'install') { @@ -412,7 +412,7 @@ function system_requirements($phase) { $profile = drupal_get_profile(); $files = system_rebuild_module_data(); foreach ($files as $module => $file) { - // Ignore disabled modules and install profiles. + // Ignore disabled modules and installation profiles. if (!$file->status || $module == $profile) { continue; } |