Same name and namespace in other branches
  1. 5.x install.php \install_no_profile_error()
  2. 7.x includes/install.core.inc \install_no_profile_error()

Show an error page when there are no profiles available.

2 calls to install_no_profile_error()
drupal_check_profile in includes/install.inc
Check a profile's requirements.
drupal_verify_profile in includes/install.inc
Verify a profile for installation.

File

./install.php, line 624

Code

function install_no_profile_error() {
  install_task_list('profile-select');
  drupal_set_title(st('No profiles available'));
  print theme('install_page', '<p>' . st('We were unable to find any installer profiles. Installer profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.') . '</p>');
  exit;
}