mirror of
https://github.com/friendica/friendica
synced 2024-11-20 08:23:41 +00:00
parse_url: Fixed a problem in the detection if there was an image or not. Additionally removed some test content.
This commit is contained in:
parent
2aa67d67f5
commit
6d0f0e6273
1 changed files with 5 additions and 3 deletions
|
@ -176,6 +176,9 @@ function parseurl_getsiteinfo($url) {
|
|||
}
|
||||
} else {
|
||||
$src = completeurl($siteinfo["image"], $url);
|
||||
|
||||
unset($siteinfo["image"]);
|
||||
|
||||
$photodata = getimagesize($src);
|
||||
|
||||
if (($photodata[0] > 10) and ($photodata[1] > 10))
|
||||
|
@ -292,8 +295,7 @@ function parse_url_content(&$a) {
|
|||
$siteinfo = parseurl_getsiteinfo($url);
|
||||
|
||||
if($siteinfo["title"] == "") {
|
||||
echo print_r($siteinfo, true);
|
||||
//echo sprintf($template,$url,$url,'') . $str_tags;
|
||||
echo sprintf($template,$url,$url,'') . $str_tags;
|
||||
killme();
|
||||
} else {
|
||||
$text = $siteinfo["text"];
|
||||
|
@ -302,7 +304,7 @@ function parse_url_content(&$a) {
|
|||
|
||||
$image = "";
|
||||
|
||||
if($siteinfo["image"] != ""){
|
||||
if(sizeof($siteinfo["images"]) > 0){
|
||||
/*
|
||||
Execute below code only if image is present in siteinfo
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue