aboutsummaryrefslogtreecommitdiffstats
path: root/include/oembed.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-06-03 16:00:14 -0700
committerzotlabs <mike@macgirvin.com>2017-06-03 16:00:14 -0700
commitc7f097ec849b05065f12246d2e647ead03f9592f (patch)
treedde9ebb14b5b183613ffcaeaf1ac3dc623e23682 /include/oembed.php
parent0b740826c5cfac8b2feddcf9e482731ebc78c553 (diff)
downloadvolse-hubzilla-c7f097ec849b05065f12246d2e647ead03f9592f.tar.gz
volse-hubzilla-c7f097ec849b05065f12246d2e647ead03f9592f.tar.bz2
volse-hubzilla-c7f097ec849b05065f12246d2e647ead03f9592f.zip
make authenticated oembeds optional, default to false.
Diffstat (limited to 'include/oembed.php')
-rwxr-xr-xinclude/oembed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/oembed.php b/include/oembed.php
index 5865c95d5..e35a77fa3 100755
--- a/include/oembed.php
+++ b/include/oembed.php
@@ -134,7 +134,7 @@ function oembed_fetch_url($embedurl){
$txt = null;
// we should try to cache this and avoid a lookup on each render
- $zrl = is_matrix_url($embedurl);
+ $zrl = ((get_config('system','oembed_zrl')) ? is_matrix_url($embedurl) : false);
$furl = ((local_channel() && $zrl) ? zid($embedurl) : $embedurl);