diff options
author | Mario <mario@mariovavti.com> | 2019-07-30 23:07:33 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-07-30 23:07:33 +0200 |
commit | 32874b89ca0179be561b8d85796be46188c851cb (patch) | |
tree | 955ad9f7a56c742d660e170e64a292622a08e3ea /Zotlabs | |
parent | 5695350e98a8a2c802ff419c5b29b0f01f0180df (diff) | |
parent | feea137dbfb807278a3b922396332b867f123049 (diff) | |
download | volse-hubzilla-32874b89ca0179be561b8d85796be46188c851cb.tar.gz volse-hubzilla-32874b89ca0179be561b8d85796be46188c851cb.tar.bz2 volse-hubzilla-32874b89ca0179be561b8d85796be46188c851cb.zip |
Merge branch 'dev' into 'dev'
fix urls on imported item taxonomy
See merge request hubzilla/core!1695
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Group.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Group.php b/Zotlabs/Module/Group.php index 12edf8428..f836978ee 100644 --- a/Zotlabs/Module/Group.php +++ b/Zotlabs/Module/Group.php @@ -177,7 +177,7 @@ class Group extends Controller { if($r) $result = group_rmv(local_channel(),$r[0]['gname']); if($result) { - $hookinfo = [ 'pgrp_extras' => '', 'group'=>$argv(2) ]; + $hookinfo = [ 'pgrp_extras' => '', 'group' => argv(2) ]; call_hooks ('privacygroup_extras_drop',$hookinfo); info( t('Privacy group removed.') . EOL); } |