From 10221f8a76521c61dcca5dfbc9ce3c28b99bf683 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Tue, 12 Mar 2013 13:38:04 -0400 Subject: [PATCH] CRM-11823 - D7 - Restore JS on upgrade screen --- CRM/Utils/System/Base.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Utils/System/Base.php b/CRM/Utils/System/Base.php index e6b0a8ef31..ef07c21888 100644 --- a/CRM/Utils/System/Base.php +++ b/CRM/Utils/System/Base.php @@ -33,6 +33,9 @@ abstract class CRM_Utils_System_Base { if ($maintenance) { drupal_set_breadcrumb(''); drupal_maintenance_theme(); + if ($region = CRM_Core_Region::instance('html-header', FALSE)) { + CRM_Utils_System::addHTMLHead($region->render('')); + } print theme('maintenance_page', array('content' => $content)); exit(); } -- 2.25.1