#76525 by asimmonds. Fixing another call to an undefined function.
parent
647d91aaef
commit
b4af893ceb
|
@ -262,7 +262,7 @@ function drupal_verify_profile($profile) {
|
||||||
$profile_file = "./profiles/$profile/$profile.profile";
|
$profile_file = "./profiles/$profile/$profile.profile";
|
||||||
|
|
||||||
if (!isset($profile) || !file_exists($profile_file)) {
|
if (!isset($profile) || !file_exists($profile_file)) {
|
||||||
_install_no_profile_error();
|
install_no_profile_error();
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once($profile_file);
|
require_once($profile_file);
|
||||||
|
|
|
@ -51,7 +51,7 @@ function install_main() {
|
||||||
install_goto("install.php?profile=$profile");
|
install_goto("install.php?profile=$profile");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
_install_no_profile_error();
|
install_no_profile_error();
|
||||||
}
|
}
|
||||||
// Load the profile.
|
// Load the profile.
|
||||||
require_once "./profiles/$profile/$profile.profile";
|
require_once "./profiles/$profile/$profile.profile";
|
||||||
|
|
Loading…
Reference in New Issue