diff options
-rw-r--r-- | mod/parse_url.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/parse_url.php b/mod/parse_url.php index db306ca76..aa71893ab 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -29,7 +29,7 @@ function parse_url_content(&$a) { if($items) { foreach($items as $item) { - $title = $item->textContent; + $title = trim($item->textContent); break; } } |