mirror of
https://github.com/friendica/friendica
synced 2025-05-09 15:04:10 +02:00
Fix malformatted tag scheme
This commit is contained in:
parent
61a2b225bb
commit
22027f8451
2 changed files with 5 additions and 1 deletions
|
@ -2408,7 +2408,7 @@ class DFRN
|
|||
$parts = explode(":", $scheme);
|
||||
if ((count($parts) >= 4) && (array_shift($parts) == "X-DFRN")) {
|
||||
$termurl = array_pop($parts);
|
||||
$termurl = array_pop($parts) . $termurl;
|
||||
$termurl = array_pop($parts) . ':' . $termurl;
|
||||
Tag::store($item['uri-id'], Tag::IMPLICIT_MENTION, $term, $termurl);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue