From 1189d6cc458b30f14bfcde7cdaa666684a8050fc Mon Sep 17 00:00:00 2001 From: blauerberg <blauerberg@646702.no-reply.drupal.org> Date: Sat, 7 Jul 2012 07:03:48 +0200 Subject: [PATCH] Issue #569194 by jschrab, blauerberg, tim.plunkett | yaoweizhen: Fixed wrong url arguments on pager. --- includes/ajax.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ajax.inc b/includes/ajax.inc index 2ba1299ecf08..1fe3dbbc38bd 100644 --- a/includes/ajax.inc +++ b/includes/ajax.inc @@ -19,7 +19,7 @@ function views_ajax() { $name = $_REQUEST['view_name']; $display_id = $_REQUEST['view_display_id']; $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; $pager_element = isset($_REQUEST['pager_element']) ? intval($_REQUEST['pager_element']) : NULL; -- GitLab