Fix blank reponse if no siteinfo are fetched

This commit is contained in:
fabrixxm 2015-03-22 11:03:46 +01:00
parent 1cc9e7db0f
commit 250b466ed3
1 changed files with 1 additions and 4 deletions

View File

@ -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"];
}