Issue #1788888 by jsacksick, David_Rothstein: Fixed Overlay at admin/modules closes on submitting the form.

8.0.x
Alex Pott 2013-07-20 21:28:59 +01:00
parent 2b08f2ec29
commit f50aa0f15e
1 changed files with 4 additions and 1 deletions

View File

@ -462,7 +462,10 @@ function overlay_get_mode() {
*/
function overlay_set_mode($mode = NULL) {
global $base_path;
$overlay_mode = &drupal_static(__FUNCTION__);
// We're not using drupal_static() here since the static cache is reset in
// drupal_flush_all_caches(); this could lead to the loss of the overlay when
// submitting the admin/modules form, for instance.
static $overlay_mode;
// Make sure external resources are not included more than once. Also return
// the current mode, if no mode was specified.