From 250b466ed38b25c0dccf93d30cec8202d41f0b6f Mon Sep 17 00:00:00 2001
From: fabrixxm <fabrix.xm@gmail.com>
Date: Sun, 22 Mar 2015 11:03:46 +0100
Subject: [PATCH] Fix blank reponse if no siteinfo are fetched

---
 mod/parse_url.php | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/mod/parse_url.php b/mod/parse_url.php
index 8920878a88..7f4bd29a08 100644
--- a/mod/parse_url.php
+++ b/mod/parse_url.php
@@ -471,10 +471,7 @@ function parse_url_content(&$a) {
 
 	$sitedata = "";
 
-	if($siteinfo["title"] == "") {
-		$sitedata .= sprintf($template,$url,$url,'') . $str_tags;
-		#killme();
-	} else {
+	if($siteinfo["title"] != "") {
 		$text = $siteinfo["text"];
 		$title = $siteinfo["title"];
 	}