install_verify_drupal
- Versions
- 5 – 6
install_verify_drupal()
Verify if Drupal is installed.
Code
./install.php, line 143
<?php
function install_verify_drupal() {
// Read the variable manually using the @ so we don't trigger an error if it fails.
$result = @db_query("SELECT value FROM {variable} WHERE name = '%s'", 'install_task');
if ($result) {
return unserialize(db_result($result));
}
}
?>Login or register to post comments 