From b2cf5cc90b15480c765e52f09906e00919bbce9d Mon Sep 17 00:00:00 2001 From: webchick <webchick@24967.no-reply.drupal.org> Date: Wed, 8 Jun 2011 20:48:51 -0700 Subject: [PATCH] Issue #996240 by David_Rothstein: Fixed Javascript error in node preview when there are unlimited value fields in overlay. --- modules/overlay/overlay.module | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/overlay/overlay.module b/modules/overlay/overlay.module index 84b755484582..44c230b64cb0 100644 --- a/modules/overlay/overlay.module +++ b/modules/overlay/overlay.module @@ -832,11 +832,14 @@ function overlay_render_region($region) { // on the final rendered page. $original_js = drupal_add_js(); $original_css = drupal_add_css(); + $original_libraries = drupal_static('drupal_add_library'); $js = &drupal_static('drupal_add_js'); $css = &drupal_static('drupal_add_css'); + $libraries = &drupal_static('drupal_add_library'); $markup = drupal_render_page($page); $js = $original_js; $css = $original_css; + $libraries = $original_libraries; // Indicate that the main page content has not, in fact, been displayed, so // that future calls to drupal_render_page() will be able to render it // correctly. -- GitLab