return;
}
+ if ((substr($url, 0, 7) == 'https//') || (substr($url, 0, 6) == 'http//')) {
+ Logger::notice('Wrong scheme in url', ['url' => $url, 'callstack' => System::callstack(20)]);
+ }
+
if (!$probing) {
$condition = ['nurl' => Strings::normaliseLink($url), 'uid' => 0, 'deleted' => false];
$contact = DBA::selectFirst('contact', ['id'], $condition, ['order' => ['id']]);
$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);
}
}