function install_verify_drupal in Drupal 5
Same name and namespace in other branches
- 6 install.php \install_verify_drupal()
Verify if Drupal is installed.
1 call to install_verify_drupal()
- install_main in ./
install.php - The Drupal installation happens in a series of steps. We begin by verifying that the current environment meets our minimum requirements. We then go on to verify that settings.php is properly configured. From there we connect to the configured database…
File
- ./
install.php, line 105
Code
function install_verify_drupal() {
$result = @db_query("SELECT name FROM {system} WHERE name = 'system'");
return $result && db_result($result) == 'system';
}