From 9afb3d6a07b5b430c73b07193c6776b2312c092f Mon Sep 17 00:00:00 2001
From: Bob Vincent <bobvin@pillars.net>
Date: Fri, 23 Mar 2012 11:26:47 -0400
Subject: [PATCH] Issue #1479572 by chertzog, pillarsdotnet: Fix undefined
 variable error in update_fix_d7_install_profile().

---
 includes/update.inc |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/includes/update.inc b/includes/update.inc
index d8ebd7ff19c6662edb06aceee1c103126f52acc0..06b2886ca64bab15f519c3bc495ce3ce0a48fed3 100644
--- a/includes/update.inc
+++ b/includes/update.inc
@@ -815,6 +815,9 @@ function update_fix_d7_install_profile() {
       'files' => array(),
     );
 
+    // The install profile is always required.
+    $info['required'] = TRUE;
+
     $values = array(
       'filename' => $filename,
       'name' => $profile,
-- 
1.7.5.4

