Resolve #2509436 "Make cachepluginbasegenerateresultskey to"
Open
requested to merge issue/drupal-2509436:2509436-make-cachepluginbasegenerateresultskey-to into 11.x
2 unresolved threads
Closes #2509436
Merge request reports
Activity
- Resolved by dimitriskr
added 103 commits
-
62db3b0a...17463191 - 101 commits from branch
project:11.x
- 8e5039bf - add patch from comment 25
- 97ebca7e - switch asserts to actual php code
-
62db3b0a...17463191 - 101 commits from branch
28 28 // All arguments requested. Use normalized query string to minimize 29 29 // variations. 30 30 $value = $this->requestStack->getCurrentRequest()->getQueryString(); 31 return ($value !== NULL) ? $value : ''; 31 return ($value !== NULL) ? (string) $value : ''; 32 32 } 33 33 elseif ($this->requestStack->getCurrentRequest()->query->has($query_arg)) { 34 34 $value = $this->requestStack->getCurrentRequest()->query->all()[$query_arg]; 35 35 if (is_array($value)) { 36 return http_build_query($value); 36 return http_build_query([$query_arg => $value], '', '&');
Please register or sign in to reply