apps/bookmarks: remove unused variable

This is not needed anymore since commit
6b64aa3faf.

Signed-off-by: Florian Pritz <bluewind@xinu.at>
This commit is contained in:
Florian Pritz 2011-10-08 21:06:39 +02:00
parent 4a4e6eb071
commit 19d4e6e1d5
1 changed files with 0 additions and 2 deletions

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;
}