From cc0cd0b292f825d70a626c1ae5d46d0a43a825b9 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 1 Feb 2018 17:17:23 -0800 Subject: more generalisation of commonly used code constructs --- include/hubloc.php | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'include/hubloc.php') diff --git a/include/hubloc.php b/include/hubloc.php index d5abda7fb..0d1a2e560 100644 --- a/include/hubloc.php +++ b/include/hubloc.php @@ -266,25 +266,11 @@ function hubloc_mark_as_down($posturl) { function locations_by_netid($netid) { - $strloc = ''; - $locs = q("select hubloc_addr as location from hubloc left join site on hubloc_url = site_url where hubloc_hash = '%s' and hubloc_deleted = 0 and site_dead = 0", dbesc($netid) ); - if($locs) { - foreach($locs as $l) { - if(!($l['location'])) - continue; - if(strpos($strloc,$l['location']) !== false) - continue; - if(strlen($strloc)) - $strloc .= ', '; - $strloc .= $l['location']; - } - } - - return $strloc; + return array_elm_to_str($locs,'location',', '); } -- cgit v1.2.3