1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-28 10:24:11 +01:00

Make UID generation conform to UUID standard

This commit is contained in:
jbtbnl 2015-01-20 14:07:54 +01:00 committed by Thomas Müller
parent 068afac460
commit d363f85455

View File

@ -213,8 +213,7 @@ Class Properties {
* @return string * @return string
*/ */
public static function generateUID() { public static function generateUID() {
$uuid = UUIDUtil::getUUID(); return UUIDUtil::getUUID();
return $uuid . '@' . \OCP\Util::getServerHostName();
} }
/** /**