Skip to content

Commit

Permalink
Chore: update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
attiks committed Aug 1, 2023
1 parent 3d28728 commit 75a520f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the code.
FROM public.ecr.aws/unocha/unified-builder:8.1-stable as builder
FROM public.ecr.aws/unocha/php-k8s:8.1-stable as builder

ARG BRANCH_ENVIRONMENT

Expand Down
5 changes: 5 additions & 0 deletions html/modules/custom/hr_paragraphs/hr_paragraphs.module
Original file line number Diff line number Diff line change
Expand Up @@ -1760,6 +1760,11 @@ function hr_paragraphs_group_parent_is_published(&$variables) {
*/
function hr_paragraphs_parse_str($string) {
$results = [];

if (empty($string)) {
return $results;
}

$parts = explode('&', $string);

foreach ($parts as $part) {
Expand Down

0 comments on commit 75a520f

Please sign in to comment.