file update

This commit is contained in:
magepeopleteam 2022-01-24 05:06:54 +00:00
parent f04bc5ad4f
commit 5ba867f09a
1 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ if (!function_exists('mep_ev_location_cart')) {
}
$location_arr = [$location, $street, $city, $state, $zip, $country];
echo esc_html(implode(',', array_filter($location_arr)));
echo esc_html(implode(', ', array_filter($location_arr)));
$content = ob_get_clean();
@ -74,7 +74,7 @@ if (!function_exists('mep_ev_location_ticket')) {
$location_arr = [$location, $street, $city, $state, $zip, $country];
echo esc_html(implode(',', array_filter($location_arr)));
echo esc_html(implode(', ', array_filter($location_arr)));
$content = ob_get_clean();
$address_arr = array(
'location' => $location,
@ -116,7 +116,7 @@ if (!function_exists('mep_ev_location')) {
$location_arr = [$location, $street, $city, $state, $zip, $country];
echo esc_html(implode(',', array_filter($location_arr)));
echo esc_html(implode(', ', array_filter($location_arr)));
$content = ob_get_clean();
$address_arr = array(
'location' => $location,