mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:42:53 +00:00
Add scheme if missing to url inserted by user in 'insert link' jot
button
This commit is contained in:
parent
b2a86ceeaa
commit
1cc9e7db0f
1 changed files with 10 additions and 1 deletions
|
@ -407,6 +407,15 @@ function parse_url_content(&$a) {
|
|||
}
|
||||
}
|
||||
|
||||
// add url scheme if missing
|
||||
$arrurl = parse_url($url);
|
||||
if (!x($arrurl, 'scheme')) {
|
||||
if (x($arrurl, 'host'))
|
||||
$url = "http:".$url;
|
||||
else
|
||||
$url = "http://".$url;
|
||||
}
|
||||
|
||||
logger('parse_url: ' . $url);
|
||||
|
||||
if($textmode)
|
||||
|
@ -464,7 +473,7 @@ function parse_url_content(&$a) {
|
|||
|
||||
if($siteinfo["title"] == "") {
|
||||
$sitedata .= sprintf($template,$url,$url,'') . $str_tags;
|
||||
killme();
|
||||
#killme();
|
||||
} else {
|
||||
$text = $siteinfo["text"];
|
||||
$title = $siteinfo["title"];
|
||||
|
|
Loading…
Reference in a new issue