Skip to content
Snippets Groups Projects

Draft: [#3052574] Facets AJAX

Open Ted Cooper requested to merge issue/facets-3052574:2.0.x-3052574-ajax into 2.0.x
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
  • b78429d6
    [#3052574] Add session to response if it exists. · b78429d6
    Ted Cooper authored
@@ -144,6 +144,12 @@ class FacetBlockAjaxController extends ControllerBase {
$new_request = Request::create($path);
$request_stack = new DrupalRequestStack();
// Add session to the response if set.
if ($request->hasSession()) {
$request->getSession()->save();
$new_request->setSession($request->getSession());
}
$processed = $this->pathProcessor->processInbound($path, $new_request);
$processed_request = Request::create($processed);
Loading