diff -u b/core/modules/views/views.theme.inc b/core/modules/views/views.theme.inc --- b/core/modules/views/views.theme.inc +++ b/core/modules/views/views.theme.inc @@ -1038,7 +1038,7 @@ $options = array( 'query' => pager_query_add_page($parameters, $element, $pager_page_array[$element] - 1), ); - $variables['items']['previous']['href'] = url($current_path, $options); + $variables['items']['previous']['href'] = _url($current_path, $options); if (isset($tags[1])) { $variables['items']['previous']['text'] = $tags[1]; } @@ -1049,7 +1049,7 @@ $options = array( 'query' => pager_query_add_page($parameters, $element, $pager_page_array[$element] + 1), ); - $variables['items']['next']['href'] = url($current_path, $options); + $variables['items']['next']['href'] = _url($current_path, $options); if (isset($tags[3])) { $variables['items']['next']['text'] = $tags[3]; }