Skip to content
Snippets Groups Projects
Commit 0c79ed84 authored by Angie Byron's avatar Angie Byron
Browse files

#649224 by David_Rothstein and ksenzee: Fixed Cannot run certain batch...

#649224 by David_Rothstein and ksenzee: Fixed Cannot run certain batch processes (tests, update manager, etc) with the overlay enabled.
parent 4fd358ed
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -517,8 +517,8 @@ function overlay_request_dialog_close($value = NULL) {
* The path that should open in the parent window after the overlay closes.
*/
function overlay_close_dialog($redirect = NULL) {
if (empty($redirect)) {
$path = $_GET['q'];
if (!isset($redirect)) {
$redirect = current_path();
}
$settings = array(
'overlayChild' => array(
......
......@@ -3591,6 +3591,7 @@ function system_admin_paths() {
$paths = array(
'admin' => TRUE,
'admin/*' => TRUE,
'batch' => TRUE,
);
return $paths;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment