From bb469deb850dacc16e26ceb65f2a215a72eb6caa Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 29 Oct 2015 01:35:49 -0700 Subject: add entry for 'none' --- mod/connedit.php | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'mod') diff --git a/mod/connedit.php b/mod/connedit.php index d2b86ff86..c3fcc6d54 100644 --- a/mod/connedit.php +++ b/mod/connedit.php @@ -652,19 +652,21 @@ function connedit_content(&$a) { $perms[] = array('perms_' . $k, $v[3], (($contact['abook_their_perms'] & $v[1]) ? "1" : ""),$thisperm, $v[1], (($channel[$v[0]] == PERMS_SPECIFIC) ? '' : '1'), $v[4], $checkinherited); } - $locstr = ''; + $locstr = ''; - $locs = q("select hubloc_addr as location from hubloc where hubloc_hash = '%s'", - dbesc($contact['xchan_hash']) - ); + $locs = q("select hubloc_addr as location from hubloc where hubloc_hash = '%s'", + dbesc($contact['xchan_hash']) + ); - if($locs) { - foreach($locs as $l) { - if(strlen($locstr)) - $locstr .= ', '; - $locstr .= $l['location']; - } + if($locs) { + foreach($locs as $l) { + if(strlen($locstr)) + $locstr .= ', '; + $locstr .= $l['location']; } + } + else + $locstr = t('none'); $o .= replace_macros($tpl,array( -- cgit v1.2.3