aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-07-14 19:43:47 -0700
committerredmatrix <git@macgirvin.com>2016-07-14 19:43:47 -0700
commitf3eb9af046b155c53a194db6104a24b6d6756072 (patch)
tree06c27921afd89a0bae18553bb069898b30517705 /Zotlabs
parente6c861480138ba871907ed6994d0fb840fd0e77f (diff)
downloadvolse-hubzilla-f3eb9af046b155c53a194db6104a24b6d6756072.tar.gz
volse-hubzilla-f3eb9af046b155c53a194db6104a24b6d6756072.tar.bz2
volse-hubzilla-f3eb9af046b155c53a194db6104a24b6d6756072.zip
more ZAT work
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Web/WebServer.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/Zotlabs/Web/WebServer.php b/Zotlabs/Web/WebServer.php
index 88ab4995b..d4f3cb9ea 100644
--- a/Zotlabs/Web/WebServer.php
+++ b/Zotlabs/Web/WebServer.php
@@ -59,7 +59,14 @@ class WebServer {
\App::$query_string = strip_zids(\App::$query_string);
if(! local_channel()) {
$_SESSION['my_address'] = $_GET['zid'];
- zid_init($a);
+ zid_init();
+ }
+ }
+
+ if((x($_GET,'zat')) && (! \App::$install)) {
+ \App::$query_string = strip_zats(\App::$query_string);
+ if(! local_channel()) {
+ zat_init();
}
}