diff options
author | zotlabs <mike@macgirvin.com> | 2018-03-29 02:26:25 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-03-29 02:26:25 -0700 |
commit | 33bb89729cdb7d8cc462253fd2b984e2e2bf4471 (patch) | |
tree | bb0268bb6117e64ab4462f37d5b62d16043714b3 /include/hubloc.php | |
parent | cd485b0fdf159ed30b73d7bf84d132ab3af9a418 (diff) | |
download | volse-hubzilla-33bb89729cdb7d8cc462253fd2b984e2e2bf4471.tar.gz volse-hubzilla-33bb89729cdb7d8cc462253fd2b984e2e2bf4471.tar.bz2 volse-hubzilla-33bb89729cdb7d8cc462253fd2b984e2e2bf4471.zip |
hubzilla issue #1019 - punycode urls on connedit page when displaying locations
Diffstat (limited to 'include/hubloc.php')
-rw-r--r-- | include/hubloc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/hubloc.php b/include/hubloc.php index 0d1a2e560..33d5dcbb2 100644 --- a/include/hubloc.php +++ b/include/hubloc.php @@ -270,7 +270,8 @@ function locations_by_netid($netid) { dbesc($netid) ); - return array_elm_to_str($locs,'location',', '); + + return array_elm_to_str($locs,'location',', ','trim_and_unpunify'); } |