Skip to content

Commit

Permalink
fix on deprecated implode call (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbeig committed Sep 9, 2021
1 parent e31b436 commit 5f6e1b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}

if ($map_config['center']) {
$url .= '/' . implode($map_config['center'],',');
$url .= '/' . implode(',', $map_config['center']);
}


Expand Down

0 comments on commit 5f6e1b8

Please sign in to comment.