From 233c5f663688c96e35f11372f8b5b59e6931d961 Mon Sep 17 00:00:00 2001 From: Dave Hall Date: Sat, 3 Aug 2013 19:35:25 +1000 Subject: [PATCH] Fix notice caused by drops using pantheon project name instead of drupal --- modules/update/update.install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/update/update.install b/modules/update/update.install index baf49538e11..79967dd17ec 100644 --- a/modules/update/update.install +++ b/modules/update/update.install @@ -32,9 +32,9 @@ function update_requirements($phase) { module_load_include('inc', 'update', 'update.compare'); $data = update_calculate_project_data($available); // First, populate the requirements for core: - $requirements['update_core'] = _update_requirement_check($data['drupal'], 'core'); - // We don't want to check drupal a second time. - unset($data['drupal']); + $requirements['update_core'] = _update_requirement_check($data['pantheon'], 'core'); + // We don't want to check pantheon a second time. + unset($data['pantheon']); if (!empty($data)) { // Now, sort our $data array based on each project's status. The // status constants are numbered in the right order of precedence, so