#76525 by asimmonds. Fixing another call to an undefined function.

5.x
Neil Drumm 2006-08-23 08:25:44 +00:00
parent 647d91aaef
commit b4af893ceb
2 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ function drupal_verify_profile($profile) {
$profile_file = "./profiles/$profile/$profile.profile";
if (!isset($profile) || !file_exists($profile_file)) {
_install_no_profile_error();
install_no_profile_error();
}
require_once($profile_file);

View File

@ -51,7 +51,7 @@ function install_main() {
install_goto("install.php?profile=$profile");
}
else {
_install_no_profile_error();
install_no_profile_error();
}
// Load the profile.
require_once "./profiles/$profile/$profile.profile";