Bookmarks: make a soft-requirement of php-curl

remotes/origin/stable
Bart Visscher 14 years ago
parent cea6561632
commit 4a57728ddd
  1. 5
      apps/bookmarks/bookmarksHelper.php

@ -56,6 +56,9 @@ function getURLMetadata($url) {
}
$metadata['url'] = $url;
if (!function_exists('curl_init')){
return $metadata;
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
@ -66,4 +69,4 @@ function getURLMetadata($url) {
$metadata['title'] = htmlspecialchars_decode(@$match[1]);
return $metadata;
}
}

Loading…
Cancel
Save