Skip to content
Snippets Groups Projects

Issue #3482067: Drupal.Views.parseQueryString returns incorrect results

1 file
+ 2
0
Compare changes
  • Side-by-side
  • Inline
@@ -22,6 +22,8 @@
@@ -22,6 +22,8 @@
const args = {};
const args = {};
if (query.includes('?')) {
if (query.includes('?')) {
query = query.substring(query.indexOf('?') + 1);
query = query.substring(query.indexOf('?') + 1);
 
} else {
 
return {};
}
}
let pair;
let pair;
const pairs = query.split('&');
const pairs = query.split('&');
Loading