apps/bookmarks: use curl instead of file_get_contents

Don't depend on allow_url_fopen being enabled when we already use curl
elsewhere in the code.

Signed-off-by: Florian Pritz <bluewind@xinu.at>
This commit is contained in:
Florian Pritz 2011-09-23 12:49:14 +02:00
parent 619ff59236
commit a36d38f2e4
1 changed files with 6 additions and 1 deletions

View File

@ -9,7 +9,12 @@ function getURLMetadata($url) {
}
$metadata['url'] = $url;
$page = file_get_contents($url);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$page = curl_exec($ch);
curl_close($ch);
@preg_match( "/<title>(.*)<\/title>/si", $page, $match );
$metadata['title'] = htmlspecialchars_decode(@$match[1]);