diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-09 13:34:57 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-09 13:34:57 -0700 |
commit | e2e7bee3cca6f2ffc88aee9c94066e117e7a682b (patch) | |
tree | 5aec0c635bc6e3cb93c2794420e1c93bf52e2dd8 /include/zid.php | |
parent | 84c86f01c853f87be93807b3e190f954aca2e6e6 (diff) | |
download | volse-hubzilla-e2e7bee3cca6f2ffc88aee9c94066e117e7a682b.tar.gz volse-hubzilla-e2e7bee3cca6f2ffc88aee9c94066e117e7a682b.tar.bz2 volse-hubzilla-e2e7bee3cca6f2ffc88aee9c94066e117e7a682b.zip |
owa cleanup
Diffstat (limited to 'include/zid.php')
-rw-r--r-- | include/zid.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/zid.php b/include/zid.php index 08d8f061b..ce9f70385 100644 --- a/include/zid.php +++ b/include/zid.php @@ -296,12 +296,13 @@ function owt_init($token) { $_SESSION['DNT'] = 1; } - $arr = array('xchan' => $hubloc, 'url' => \App::query_string, 'session' => $_SESSION); + $arr = array('xchan' => $hubloc, 'url' => \App::$query_string, 'session' => $_SESSION); call_hooks('magic_auth_success',$arr); \App::set_observer($hubloc); require_once('include/security.php'); \App::set_groups(init_groups_visitor($_SESSION['visitor_id'])); - info(sprintf( t('Welcome %s. Remote authentication successful.'),$hubloc['xchan_name'])); + if(! get_config('system','hide_owa_greeting')) + info(sprintf( t('OpenWebAuth: %1$s welcomes %2$s'),\App::get_hostname(), $hubloc['xchan_name'])); logger('OpenWebAuth: auth success from ' . $hubloc['xchan_addr']); |