Skip to content

Commit

Permalink
Merge pull request #3 from taliesinpenbardd/patch-1
Browse files Browse the repository at this point in the history
implode( $pieces, $glue) is deprecated
  • Loading branch information
padams authored Sep 28, 2020
2 parents e71284d + 56879bb commit 7d4510c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/slideshow/slideshow.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function render_slideshow( $block_content, $block ) {

$o[] = '</div>';

return implode( $o, " \n " );
return implode( " \n ", $o );
}

public function public_scripts( $content ) {
Expand Down

0 comments on commit 7d4510c

Please sign in to comment.