diff options
author | Mario Vavti <mario@mariovavti.com> | 2024-11-03 11:45:08 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2024-11-03 11:45:08 +0100 |
commit | d25314c75b0941b91f73eb39cba489ec6b48c301 (patch) | |
tree | 7cdb40cf9e1d17c22a363f8baaaf03a099281c58 /include | |
parent | 005d4ad35143e417b7c1dbfbf38417dee03e9608 (diff) | |
parent | e20327d26760adbea6554268119bc671e0199afb (diff) | |
download | volse-hubzilla-d25314c75b0941b91f73eb39cba489ec6b48c301.tar.gz volse-hubzilla-d25314c75b0941b91f73eb39cba489ec6b48c301.tar.bz2 volse-hubzilla-d25314c75b0941b91f73eb39cba489ec6b48c301.zip |
Merge branch 'dev' into containers
Diffstat (limited to 'include')
-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 22b5bcde1..0ece3be74 100644 --- a/include/channel.php +++ b/include/channel.php @@ -3106,7 +3106,7 @@ function pchan_to_chan($pchan) { } function channel_url($channel) { - return (($channel) ? z_root() . '/channel/' . $channel['channel_address'] : z_root()); + return ((isset($channel['channel_address'])) ? z_root() . '/channel/' . $channel['channel_address'] : z_root()); } function get_channel_hashes() { |