Skip to content
Snippets Groups Projects
Commit 1189d6cc authored by Yoshikazu Aoyama's avatar Yoshikazu Aoyama Committed by Tim Plunkett
Browse files

Issue #569194 by jschrab, blauerberg, tim.plunkett | yaoweizhen: Fixed wrong...

Issue #569194 by jschrab, blauerberg, tim.plunkett | yaoweizhen: Fixed wrong url arguments on pager.
parent fb03f46c
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
...@@ -19,7 +19,7 @@ function views_ajax() { ...@@ -19,7 +19,7 @@ function views_ajax() {
$name = $_REQUEST['view_name']; $name = $_REQUEST['view_name'];
$display_id = $_REQUEST['view_display_id']; $display_id = $_REQUEST['view_display_id'];
$args = isset($_REQUEST['view_args']) && $_REQUEST['view_args'] !== '' ? explode('/', $_REQUEST['view_args']) : array(); $args = isset($_REQUEST['view_args']) && $_REQUEST['view_args'] !== '' ? explode('/', $_REQUEST['view_args']) : array();
$path = isset($_REQUEST['view_path']) ? $_REQUEST['view_path'] : NULL; $path = isset($_REQUEST['view_path']) ? rawurldecode($_REQUEST['view_path']) : NULL;
$dom_id = isset($_REQUEST['view_dom_id']) ? preg_replace('/[^a-zA-Z0-9_-]+/', '-', $_REQUEST['view_dom_id']) : NULL; $dom_id = isset($_REQUEST['view_dom_id']) ? preg_replace('/[^a-zA-Z0-9_-]+/', '-', $_REQUEST['view_dom_id']) : NULL;
$pager_element = isset($_REQUEST['pager_element']) ? intval($_REQUEST['pager_element']) : NULL; $pager_element = isset($_REQUEST['pager_element']) ? intval($_REQUEST['pager_element']) : NULL;
......
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