Commit aa2485a2 authored by Jess's avatar Jess
Browse files

Merged 9.0.6.

parents 9bb004cd b6ca29bf
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -4481,9 +4481,6 @@
                "ext-zip": "Enabling the zip extension allows you to unzip archives",
                "ext-zlib": "Allow gzip compression of HTTP requests"
            },
            "bin": [
                "bin/composer"
            ],
            "type": "library",
            "extra": {
                "branch-alias": {
+2 −1
Original line number Diff line number Diff line
@@ -861,7 +861,8 @@ protected function buildFormAction() {
    //   https://www.drupal.org/node/2504709.
    $parsed = UrlHelper::parse($request_uri);
    unset($parsed['query'][static::AJAX_FORM_REQUEST], $parsed['query'][MainContentViewSubscriber::WRAPPER_FORMAT]);
    return $parsed['path'] . ($parsed['query'] ? ('?' . UrlHelper::buildQuery($parsed['query'])) : '');
    $action =  $parsed['path'] . ($parsed['query'] ? ('?' . UrlHelper::buildQuery($parsed['query'])) : '');
    return UrlHelper::filterBadProtocol($action);
  }

  /**
+1 −0
Original line number Diff line number Diff line
@@ -559,6 +559,7 @@
        }
      },
      dataType: 'json',
      jsonp: false,
      type: 'POST',
    };

+1 −0
Original line number Diff line number Diff line
@@ -246,6 +246,7 @@ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len
        }
      },
      dataType: 'json',
      jsonp: false,
      type: 'POST'
    };

+1 −0
Original line number Diff line number Diff line
@@ -281,6 +281,7 @@
    },
    ajax: {
      dataType: 'json',
      jsonp: false,
    },
  };

Loading