aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-08-24 11:26:52 +0200
committerMario <mario@mariovavti.com>2020-08-24 11:26:52 +0200
commitaafdeb9000454e723a0b6a3940306f500245c4d0 (patch)
tree8e7d2291eab87631318f9eedfa4fff2e41a5cc25 /include
parente9a264cb43e4c782160db645329d59db9835e388 (diff)
downloadvolse-hubzilla-aafdeb9000454e723a0b6a3940306f500245c4d0.tar.gz
volse-hubzilla-aafdeb9000454e723a0b6a3940306f500245c4d0.tar.bz2
volse-hubzilla-aafdeb9000454e723a0b6a3940306f500245c4d0.zip
Revert "more prefer zot6"
This reverts commit e9a264cb43e4c782160db645329d59db9835e388
Diffstat (limited to 'include')
-rw-r--r--include/security.php10
1 files changed, 3 insertions, 7 deletions
diff --git a/include/security.php b/include/security.php
index eb18f3b21..c9df00f1e 100644
--- a/include/security.php
+++ b/include/security.php
@@ -5,8 +5,6 @@
* @brief Some security related functions.
*/
-use Zotlabs\Lib\Libzot;
-
/**
* @param int $user_record The account_id
* @param array $channel
@@ -279,16 +277,14 @@ function change_channel($change_channel) {
}
$ret = $r[0];
}
- $x = q("select * from xchan where xchan_hash = '%s'",
+ $x = q("select * from xchan where xchan_hash = '%s' limit 1",
dbesc($hash)
);
if($x) {
- $x = Libzot::zot_record_preferred($x, 'xchan_network');
-
- $_SESSION['my_url'] = $x['xchan_url'];
+ $_SESSION['my_url'] = $x[0]['xchan_url'];
$_SESSION['my_address'] = channel_reddress($r[0]);
- App::set_observer($x);
+ App::set_observer($x[0]);
App::set_perms(get_all_perms(local_channel(), $hash));
}
if(! is_dir('store/' . $r[0]['channel_address']))