From b4af893cebc6cb678174c425792496873c859fdb Mon Sep 17 00:00:00 2001
From: Neil Drumm <drumm@3064.no-reply.drupal.org>
Date: Wed, 23 Aug 2006 08:25:44 +0000
Subject: [PATCH] #76525 by asimmonds. Fixing another call to an undefined
 function.

---
 includes/install.inc | 2 +-
 install.php          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/includes/install.inc b/includes/install.inc
index 50281c86c1ae..b4367c16d941 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);
diff --git a/install.php b/install.php
index 46545edad96a..ba6f223a41f3 100644
--- a/install.php
+++ b/install.php
@@ -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";
-- 
GitLab