summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-02-22 17:55:30 +0000
committerDries Buytaert <dries@buytaert.net>2009-02-22 17:55:30 +0000
commit5d658d08481c22b5ef577b39a29cd647438b211f (patch)
tree74fca69f981d985604b126943aed71bb79d1bbcb /install.php
parentb3e36d655c831c63c26a710eb3c8bd82ca3b6fc5 (diff)
downloadbrdo-5d658d08481c22b5ef577b39a29cd647438b211f.tar.gz
brdo-5d658d08481c22b5ef577b39a29cd647438b211f.tar.bz2
- Patch #380064 by c960657: make file_scan_directory() use save property names as file_load().
Diffstat (limited to 'install.php')
-rw-r--r--install.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php
index 367f15650..3c4f8f9b7 100644
--- a/install.php
+++ b/install.php
@@ -420,7 +420,7 @@ function install_select_profile() {
// Don't need to choose profile if only one available.
if (sizeof($profiles) == 1) {
$profile = array_pop($profiles);
- require_once $profile->filename;
+ require_once $profile->filepath;
return $profile->name;
}
elseif (sizeof($profiles) > 1) {
@@ -451,7 +451,7 @@ function install_select_profile_form(&$form_state, $profile_files) {
$names = array();
foreach ($profile_files as $profile) {
- include_once DRUPAL_ROOT . '/' . $profile->filename;
+ include_once DRUPAL_ROOT . '/' . $profile->filepath;
// Load profile details and store them for later retrieval.
$function = $profile->name . '_profile_details';