mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Fix #2411 misalignment when member address is empty
This commit is contained in:
parent
fd3029e834
commit
123a83cbd8
1 changed files with 1 additions and 1 deletions
|
|
@ -269,7 +269,7 @@ class Value
|
|||
case 'email':
|
||||
return sprintf('<a href="mailto:%s">%s</a>', $value, $value);
|
||||
case 'kr_zip':
|
||||
return is_array($value) ? implode(' ', $value) : $value;
|
||||
return is_array($value) ? trim(implode(' ', $value)) : $value;
|
||||
case 'country':
|
||||
$country = i18n::listCountries()[$value] ?? '';
|
||||
if ($country)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue