summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-23 08:25:44 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-23 08:25:44 +0000
commitb4af893cebc6cb678174c425792496873c859fdb (patch)
treec333aba73c2055045c0664a2898dcd6d83df10a8 /includes
parent647d91aaef796c31b4e54154e8642bea95181a8e (diff)
downloadbrdo-b4af893cebc6cb678174c425792496873c859fdb.tar.gz
brdo-b4af893cebc6cb678174c425792496873c859fdb.tar.bz2
#76525 by asimmonds. Fixing another call to an undefined function.
Diffstat (limited to 'includes')
-rw-r--r--includes/install.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/install.inc b/includes/install.inc
index 50281c86c..b4367c16d 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -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);