The timestamp was at the wrong place

This commit is contained in:
Michael Vogel 2015-04-06 13:49:57 +02:00
parent aea83f0bec
commit 539a93b3f1
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,6 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
if (($curl_info["content_type"] != "") AND !strstr(strtolower($curl_info["content_type"]),"html"))
return($siteinfo);
$stamp1 = microtime(true);
if ($do_oembed) {
require_once("include/oembed.php");
@ -125,6 +123,8 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
}
}
$stamp1 = microtime(true);
// Now fetch the body as well
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);