]> git.mxchange.org Git - friendica.git/commitdiff
oexchange updates to new bookmark API
authorFriendika <info@friendika.com>
Tue, 20 Sep 2011 23:57:05 +0000 (16:57 -0700)
committerFriendika <info@friendika.com>
Tue, 20 Sep 2011 23:57:05 +0000 (16:57 -0700)
mod/oexchange.php

index 1a990c64f17350f8b9f7e8e9b5d90efaaabdbf59..53dce6446a2cbdaf722eb194f4390762e6c04c1e 100644 (file)
@@ -28,9 +28,16 @@ function oexchange_content(&$a) {
                return;
        }
 
-       $url = (((x($_GET,'url')) && strlen($_GET['url'])) ? notags(trim($_GET['url'])) : '');
-
-       $s = fetch_url($a->get_baseurl() . '/parse_url&url=' . $url);
+       $url = (((x($_GET,'url')) && strlen($_GET['url'])) 
+               ? urlencode(notags(trim($_GET['url']))) : '');
+       $title = (((x($_GET,'title')) && strlen($_GET['title'])) 
+               ? '&title=' . urlencode(notags(trim($_GET['title']))) : '');
+       $description = (((x($_GET,'description')) && strlen($_GET['description'])) 
+               ? '&description=' . urlencode(notags(trim($_GET['description']))) : '');
+       $tags = (((x($_GET,'tags')) && strlen($_GET['tags'])) 
+               ? '&tags=' . urlencode(notags(trim($_GET['tags']))) : '');
+
+       $s = fetch_url($a->get_baseurl() . '/parse_url?f=&url=' . $url . $title . $description . $tags);
 
        if(! strlen($s))
                return;