mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 03:25:15 +02:00
bug #37, ampersand + everything following in url is stripped when using link icon to share link
This commit is contained in:
parent
bf865f0210
commit
58508201a5
4 changed files with 30 additions and 2 deletions
|
@ -5,7 +5,11 @@ require_once('library/HTML5/Parser.php');
|
|||
|
||||
function parse_url_content(&$a) {
|
||||
|
||||
$url = trim($_GET['url']);
|
||||
logger('parse_url: ' . $_GET['url']);
|
||||
|
||||
$url = trim(hex2bin($_GET['url']));
|
||||
|
||||
logger('parse_url: ' . $url);
|
||||
|
||||
$text = null;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue