Fix blank reponse if no siteinfo are fetched
This commit is contained in:
parent
1cc9e7db0f
commit
250b466ed3
|
@ -471,10 +471,7 @@ function parse_url_content(&$a) {
|
||||||
|
|
||||||
$sitedata = "";
|
$sitedata = "";
|
||||||
|
|
||||||
if($siteinfo["title"] == "") {
|
if($siteinfo["title"] != "") {
|
||||||
$sitedata .= sprintf($template,$url,$url,'') . $str_tags;
|
|
||||||
#killme();
|
|
||||||
} else {
|
|
||||||
$text = $siteinfo["text"];
|
$text = $siteinfo["text"];
|
||||||
$title = $siteinfo["title"];
|
$title = $siteinfo["title"];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue