elivz / VzAddress-Craft

Address fieldtype for the Craft CMS
30 stars 13 forks source link

staticMap and staticMapUrl Being Output Multiple Times #15

Closed RitterKnightCreative closed 7 years ago

RitterKnightCreative commented 7 years ago

In vzaddress/models/VzAddress_AddressModel.php

Looks like this line is causing it:

$output .= $key ? $output.'&key='.$key : $output

Should be:

$output = $key ? $output.'&key='.$key : $output

Easy fix!

elivz commented 7 years ago

Duh. Fixed now.