diff options
author | Mario <mario@mariovavti.com> | 2023-02-15 13:33:23 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-02-15 13:33:23 +0000 |
commit | 09a60774d746de57d6f9e479a1f6cf70c691f031 (patch) | |
tree | 1c93fee3a5a88b4cbcd9d9b9237451cf2fee99a1 /include/channel.php | |
parent | 1ca988b177834467671137c94f17a5948b465f6f (diff) | |
download | volse-hubzilla-09a60774d746de57d6f9e479a1f6cf70c691f031.tar.gz volse-hubzilla-09a60774d746de57d6f9e479a1f6cf70c691f031.tar.bz2 volse-hubzilla-09a60774d746de57d6f9e479a1f6cf70c691f031.zip |
we can sign messages which are not from the primary location
Diffstat (limited to 'include/channel.php')
-rw-r--r-- | include/channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/channel.php b/include/channel.php index 296615524..c36e50f19 100644 --- a/include/channel.php +++ b/include/channel.php @@ -3086,6 +3086,6 @@ function channel_url($channel) { } function get_channel_hashes() { - $r = q("SELECT channel_hash FROM channel WHERE channel_removed = 0"); + $r = dbq("SELECT channel_hash FROM channel WHERE channel_removed = 0"); return flatten_array_recursive($r); } |