From 233e4e13636edd857ded7393555feb4bf198eed3 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 14 Jul 2014 01:38:16 -0700 Subject: remove some code duplication --- include/oembed.php | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'include/oembed.php') diff --git a/include/oembed.php b/include/oembed.php index 42a9881ed..de3a6edc8 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -29,18 +29,10 @@ function oembed_fetch_url($embedurl){ $txt = ""; if (in_array($ext, $noexts)) { - $m = @parse_url($embedurl); - $zrl = false; - if($m['host']) { - $r = q("select hubloc_url from hubloc where hubloc_host = '%s' limit 1", - dbesc($m['host']) - ); - if($r) - $zrl = true; - } - if($zrl) { - $embedurl = zid($embedurl); - } + require_once('include/hubloc.php'); + $zrl = is_matrix_url($embedurl); + if($zrl) + $embedurl = zid($embedurl); } else { // try oembed autodiscovery -- cgit v1.2.3