summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-08-08 21:18:04 +0000
committerDries Buytaert <dries@buytaert.net>2006-08-08 21:18:04 +0000
commit3c975f4bb8d3975dc73444e47d01dd98e9b2b37a (patch)
treef783283c052c291c10f5c5035aaa417643fc1d24 /includes
parent3c0ad23f7df98abceabd3f8f92cd5358f76a0ed0 (diff)
downloadbrdo-3c975f4bb8d3975dc73444e47d01dd98e9b2b37a.tar.gz
brdo-3c975f4bb8d3975dc73444e47d01dd98e9b2b37a.tar.bz2
- Patch #77549 by adrian: install profiles should be in their own directory.
Diffstat (limited to 'includes')
-rw-r--r--includes/install.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/install.inc b/includes/install.inc
index 12f9560fd..77dd88d54 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -259,7 +259,7 @@ function drupal_get_install_files($module_list = array()) {
function drupal_verify_profile($profile) {
include_once './includes/file.inc';
- $profile_file = "./profiles/$profile.profile";
+ $profile_file = "./profiles/$profile/$profile.profile";
if (!isset($profile) || !file_exists($profile_file)) {
_install_no_profile_error();
@@ -551,4 +551,4 @@ function install_goto($path) {
function st($string, $args = array()) {
require_once './includes/theme.inc';
return strtr($string, array_map('theme_placeholder', $args));
-} \ No newline at end of file
+}