diff options
Diffstat (limited to 'mod/parse_url.php')
-rw-r--r-- | mod/parse_url.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/parse_url.php b/mod/parse_url.php index 783390f27..c206c24ec 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -232,6 +232,10 @@ function parse_url_content(&$a) { else $url = trim($_GET['url']); + if((substr($url,0,1) != '/') && (substr($url,0,4) != 'http')) + $url = 'http://' . $url; + + if($_GET['title']) $title = strip_tags(trim($_GET['title'])); |