New uri format for our posts that is AP compatible

This commit is contained in:
Michael 2018-09-15 07:37:34 +00:00
parent 2e7ca76e15
commit fb5b6e4a14
2 changed files with 6 additions and 16 deletions

View file

@ -2329,13 +2329,7 @@ class Item extends BaseObject
$guid = System::createGUID(32);
}
$hostname = self::getApp()->get_hostname();
$user = DBA::selectFirst('user', ['nickname'], ['uid' => $uid]);
$uri = "urn:X-dfrn:" . $hostname . ':' . $user['nickname'] . ':' . $guid;
return $uri;
return self::getApp()->get_baseurl() . '/object/' . $guid;
}
/**