that change did make wonky uuids

This commit is contained in:
dogmatic69 2012-09-12 23:52:04 +01:00
parent f886d874a6
commit b84224804e

View file

@ -72,6 +72,10 @@ class String {
} elseif ($node !== '127.0.0.1') {
$node = ip2long($node);
} else {
$node = null;
}
if(empty($node)) {
$node = crc32(Configure::read('Security.salt'));
}