1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-02-18 15:54:28 +01:00

apps/bookmarks: remove unused variable

This is not needed anymore since commit
6b64aa3faf1e94a2fc2a1e98b35418d35b73ab22.

Signed-off-by: Florian Pritz <bluewind@xinu.at>
This commit is contained in:
Florian Pritz 2011-10-08 21:06:39 +02:00
parent 45bd1df772
commit fdde7f5fbf

View File

@ -65,7 +65,5 @@ function getURLMetadata($url) {
@preg_match( "/<title>(.*)<\/title>/si", $page, $match );
$metadata['title'] = htmlspecialchars_decode(@$match[1]);
$meta = get_meta_tags($url);
return $metadata;
}