in reply to Re: Re: Concat Error, but I'm not concatenating??
in thread Concat Error, but I'm not concatenating??

$node, $lat or $lon are undefined. When you assign the values, add an || ''; - if it's ok for them to be empty. Eg
$node = defined $q->param('node') ? $q->param('node') : '';
cLive ;-)