diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-06-29 23:04:34 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-06-29 23:04:34 +0200 |
commit | f098600c41553bc47267a61fb47a4957046e696e (patch) | |
tree | 0e39518d4e5a99aa91d33e66c48b3706e385636c /Zotlabs | |
parent | 715b1667d928175c0fac5832b998d9ded92974a3 (diff) | |
download | volse-hubzilla-f098600c41553bc47267a61fb47a4957046e696e.tar.gz volse-hubzilla-f098600c41553bc47267a61fb47a4957046e696e.tar.bz2 volse-hubzilla-f098600c41553bc47267a61fb47a4957046e696e.zip |
missing backslash leads to wsod on refresh permissions
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Connedit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php index feed9cb1a..7db4950b1 100644 --- a/Zotlabs/Module/Connedit.php +++ b/Zotlabs/Module/Connedit.php @@ -433,7 +433,7 @@ class Connedit extends \Zotlabs\Web\Controller { else { // if you are on a different network we'll force a refresh of the connection basic info - Zotlabs\Daemon\Master::Summon(array('Notifier','permission_update',$contact_id)); + \Zotlabs\Daemon\Master::Summon(array('Notifier','permission_update',$contact_id)); } goaway(z_root() . '/connedit/' . $contact_id); } |