From 3c89d3160adfcbcc3f7b8055c3532de8d93fefd8 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 16 Apr 2013 16:39:38 -0700 Subject: add Red detection to parse_url --- mod/parse_url.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'mod') diff --git a/mod/parse_url.php b/mod/parse_url.php index e7b9bb391..18e80ee3f 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -63,7 +63,7 @@ function parseurl_getsiteinfo($url) { $header = $result['header']; $body = $result['body']; - $body = mb_convert_encoding($body, "UTF-8", $charset); + $body = mb_convert_encoding($body, 'UTF-8', 'UTF-8'); $body = mb_convert_encoding($body, 'HTML-ENTITIES', "UTF-8"); $doc = new DOMDocument(); @@ -99,6 +99,9 @@ function parseurl_getsiteinfo($url) { $attr["content"] = html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"); switch (strtolower($attr["name"])) { + case 'generator': + $siteinfo['generator'] = $attr['content']; + break; case "fulltitle": $siteinfo["title"] = $attr["content"]; break; @@ -274,6 +277,11 @@ function parse_url_content(&$a) { $siteinfo = parseurl_getsiteinfo($url); + // If this is a Red site, use zrl rather than url so they get zids sent to them by default + + if( x($siteinfo,'generator') && strpos($siteinfo['generator'],RED_PLATFORM . ' ')) + $template = str_replace('url','zrl',$template); + if($siteinfo["title"] == "") { echo sprintf($template,$url,$url,'') . $str_tags; killme(); -- cgit v1.2.3