aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-09-17 23:54:40 -0700
committerzotlabs <mike@macgirvin.com>2017-09-17 23:55:18 -0700
commit5c379b4d356169b8eada1f6e1851dbc7f5af6933 (patch)
tree7d57d233b29eedb2dc2771fc6978c9eb5ca89782 /Zotlabs
parent1d9e0f17a6e945a10c05ad6543682ad1c8cd87d9 (diff)
downloadvolse-hubzilla-5c379b4d356169b8eada1f6e1851dbc7f5af6933.tar.gz
volse-hubzilla-5c379b4d356169b8eada1f6e1851dbc7f5af6933.tar.bz2
volse-hubzilla-5c379b4d356169b8eada1f6e1851dbc7f5af6933.zip
acl issue with some ActivityPub completions
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Acl.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/Zotlabs/Module/Acl.php b/Zotlabs/Module/Acl.php
index 9b2be0fea..769b36ce4 100644
--- a/Zotlabs/Module/Acl.php
+++ b/Zotlabs/Module/Acl.php
@@ -21,7 +21,7 @@ class Acl extends \Zotlabs\Web\Controller {
function init() {
- // logger('mod_acl: ' . print_r($_REQUEST,true));
+ logger('mod_acl: ' . print_r($_REQUEST,true));
$start = (x($_REQUEST,'start') ? $_REQUEST['start'] : 0);
$count = (x($_REQUEST,'count') ? $_REQUEST['count'] : 500);
@@ -307,7 +307,7 @@ class Acl extends \Zotlabs\Web\Controller {
$contacts[] = array(
"photo" => $g['photo'],
"name" => $g['name'],
- "nick" => $g['address'],
+ "nick" => $g['address']
);
}
}
@@ -330,7 +330,12 @@ class Acl extends \Zotlabs\Web\Controller {
continue;
$g['hash'] = urlencode($g['hash']);
-
+
+ if(! $g['nick']) {
+ $t = explode(' ',strtolower($g['name']));
+ $g['nick'] = $t[0] . '@';
+ }
+
if(in_array($g['hash'],$permitted) && $type == 'c' && (! $noforums)) {
$contacts[] = array(
"type" => "c",